Bei neuem Service Worker wird die Seite automatisch neu geladen. Kein Popup mehr für die User.
1175 lines
169 KiB
HTML
1175 lines
169 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<link rel="manifest" href="manifest.json">
|
||
<meta name="theme-color" content="#3b82f6">
|
||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||
<meta name="apple-mobile-web-app-title" content="JGA Prag">
|
||
<meta name="mobile-web-app-capable" content="yes">
|
||
<script>
|
||
(function() {
|
||
const saved = localStorage.getItem('jga-theme');
|
||
document.documentElement.setAttribute('data-theme', saved || 'dark');
|
||
})();
|
||
</script>
|
||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🧭</text></svg>">
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>JGA Prag – Tourenplan mit Tram & Metro</title>
|
||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
|
||
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
|
||
crossorigin=""/>
|
||
<style>
|
||
/* ====== Theme-Variablen ====== */
|
||
:root, [data-theme="dark"] {
|
||
--bg: #1a1a1a;
|
||
--bg-gradient-start: #2d2d2d;
|
||
--bg-gradient-end: #1a1a1a;
|
||
--card-bg: rgba(30,30,30,0.95);
|
||
--card-border: #444;
|
||
--text: #eee;
|
||
--text-muted: #aaa;
|
||
--header-border: #444;
|
||
--lines-bg: rgba(30,30,30,0.95);
|
||
--accent: #1976d2;
|
||
}
|
||
[data-theme="light"] {
|
||
--bg: #f5f5f7;
|
||
--bg-gradient-start: #ffffff;
|
||
--bg-gradient-end: #f0f0f3;
|
||
--card-bg: rgba(255,255,255,0.95);
|
||
--card-border: #d0d0d5;
|
||
--text: #1a1a1a;
|
||
--text-muted: #555;
|
||
--header-border: #d0d0d5;
|
||
--lines-bg: rgba(255,255,255,0.95);
|
||
--accent: #1976d2;
|
||
}
|
||
html, body { margin: 0; padding: 0; height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--text); transition: background 0.3s, color 0.3s; }
|
||
#header { padding: 16px 20px; background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%); border-bottom: 2px solid var(--header-border); position: relative; }
|
||
#header h1 { margin: 0 0 4px 0; font-size: 22px; }
|
||
#header .sub { color: var(--text-muted); font-size: 13px; }
|
||
#map { height: calc(100vh - 80px); width: 100%; }
|
||
|
||
/* Theme-Toggle Button */
|
||
.theme-toggle {
|
||
position: fixed;
|
||
top: 16px;
|
||
right: 16px;
|
||
width: 44px; height: 44px;
|
||
border-radius: 50%;
|
||
background: var(--card-bg);
|
||
border: 1px solid var(--card-border);
|
||
color: var(--text);
|
||
font-size: 20px;
|
||
cursor: pointer;
|
||
z-index: 1000;
|
||
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
|
||
transition: all 0.2s;
|
||
display: flex; align-items: center; justify-content: center;
|
||
}
|
||
.theme-toggle:hover {
|
||
transform: rotate(15deg) scale(1.1);
|
||
border-color: var(--accent);
|
||
}
|
||
/* Home-Button (oben links) */
|
||
.home-btn {
|
||
position: fixed;
|
||
top: 16px;
|
||
left: 16px;
|
||
z-index: 1000;
|
||
background: var(--card-bg);
|
||
border: 1px solid var(--card-border);
|
||
color: var(--text);
|
||
text-decoration: none;
|
||
padding: 10px 16px;
|
||
border-radius: 22px;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
|
||
transition: all 0.2s;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
.home-btn:hover {
|
||
transform: translateX(-2px);
|
||
border-color: var(--accent);
|
||
color: var(--accent);
|
||
}
|
||
/* Mobile: kleinere Buttons, mehr Platz für Karte */
|
||
@media (max-width: 768px) {
|
||
.home-btn { top: 10px; left: 10px; padding: 8px 12px; font-size: 13px; }
|
||
.theme-toggle { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 18px; }
|
||
/* Leaflet Controls am Rand kleiner / dichter */
|
||
.leaflet-control { margin: 8px !important; }
|
||
.leaflet-top.leaflet-left .leaflet-control { margin-top: 56px !important; }
|
||
.lines-toggle, .legend { max-width: 180px !important; font-size: 12px !important; }
|
||
.lines-toggle h4, .legend h4 { font-size: 12px !important; }
|
||
}
|
||
/* Hotel-Marker: größer + Gold-Rahmen + pulsierender Glow + permanentes Label */
|
||
.hotel-marker {
|
||
position: relative;
|
||
}
|
||
.hotel-marker::before {
|
||
content: '';
|
||
position: absolute;
|
||
inset: -10px;
|
||
border-radius: 50%;
|
||
background: radial-gradient(circle, rgba(255,215,0,0.35) 0%, rgba(255,215,0,0) 70%);
|
||
animation: hotelPulse 2.4s ease-in-out infinite;
|
||
pointer-events: none;
|
||
}
|
||
@keyframes hotelPulse {
|
||
0%, 100% { transform: scale(0.9); opacity: 0.7; }
|
||
50% { transform: scale(1.2); opacity: 1; }
|
||
}
|
||
.hotel-marker > div {
|
||
background: #4fc3f7 !important;
|
||
border: 4px solid #ffd700 !important;
|
||
box-shadow: 0 0 16px rgba(255,215,0,0.6), 0 4px 12px rgba(0,0,0,0.6) !important;
|
||
z-index: 1000 !important;
|
||
}
|
||
.hotel-label {
|
||
background: rgba(255,215,0,0.95) !important;
|
||
color: #1a1a1a !important;
|
||
font-weight: 800 !important;
|
||
font-size: 13px !important;
|
||
padding: 4px 10px !important;
|
||
border: 2px solid #4fc3f7 !important;
|
||
box-shadow: 0 2px 8px rgba(0,0,0,0.5) !important;
|
||
white-space: nowrap;
|
||
margin-bottom: 8px;
|
||
}
|
||
.hotel-label::before { display: none; }
|
||
.hotel-banner {
|
||
background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
|
||
color: #1a1a1a;
|
||
padding: 8px 14px;
|
||
border-radius: 8px;
|
||
font-weight: 700;
|
||
font-size: 13px;
|
||
margin-bottom: 8px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
box-shadow: 0 2px 6px rgba(255,215,0,0.3);
|
||
}
|
||
.layer-toggle { margin-top: 8px; padding-top: 6px; border-top: 1px solid #555; font-size: 12px; }
|
||
.layer-toggle label { display: flex; align-items: center; gap: 6px; margin: 3px 0; cursor: pointer; user-select: none; color: #eee; }
|
||
.layer-toggle input { cursor: pointer; }
|
||
.legend { background: var(--card-bg); padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: 13px; box-shadow: 0 2px 8px rgba(0,0,0,0.4); border: 1px solid var(--card-border); max-width: 220px; backdrop-filter: blur(8px); }
|
||
.legend h4 { margin: 0; font-size: 13px; cursor: pointer; user-select: none; display: flex; align-items: center; gap: 6px; }
|
||
.legend h4 .toggle { margin-left: auto; font-size: 10px; opacity: 0.6; transition: transform 0.2s; }
|
||
.legend.open h4 .toggle { transform: rotate(180deg); }
|
||
.legend .body { display: none; margin-top: 8px; max-height: 280px; overflow-y: auto; }
|
||
.legend.open .body { display: block; }
|
||
.legend .item { display: flex; align-items: center; gap: 6px; margin: 3px 0; font-size: 12px; }
|
||
.legend .emoji { font-size: 14px; }
|
||
.legend .dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid white; flex-shrink: 0; }
|
||
.popup-content { font-family: -apple-system, BlinkMacSystemFont, sans-serif; min-width: 220px; }
|
||
.popup-content .emoji-big { font-size: 28px; margin-right: 8px; }
|
||
.popup-content h3 { margin: 0 0 6px 0; font-size: 16px; color: #1a1a1a; }
|
||
.popup-content .meta { font-size: 12px; color: #555; margin: 4px 0; }
|
||
.popup-content .desc { font-size: 13px; color: #333; margin: 6px 0; }
|
||
.popup-content .price { display: inline-block; background: #ffeb3b; color: #1a1a1a; padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 12px; margin-top: 4px; }
|
||
.popup-content a { display: inline-block; margin-top: 8px; padding: 5px 10px; background: #1976d2; color: white; text-decoration: none; border-radius: 4px; font-size: 12px; }
|
||
.popup-content a:hover { background: #1565c0; }
|
||
.leaflet-popup-content-wrapper { border-radius: 8px; }
|
||
.marker-label { background: rgba(30,30,30,0.9); color: white; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; white-space: nowrap; box-shadow: 0 1px 4px rgba(0,0,0,0.4); border: none; }
|
||
.marker-label::before { display: none; }
|
||
.tram-popup .leaflet-popup-content-wrapper {
|
||
background: rgba(30,30,30,0.95) !important;
|
||
color: #eee !important;
|
||
}
|
||
.tram-popup .popup-content h3 { color: #fff !important; }
|
||
.tram-popup .popup-content .desc,
|
||
.tram-popup .popup-content .meta { color: #ccc !important; }
|
||
|
||
.lines-toggle {
|
||
background: var(--lines-bg);
|
||
padding: 10px 12px;
|
||
border-radius: 8px;
|
||
color: var(--text);
|
||
font-size: 13px;
|
||
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
|
||
border: 1px solid var(--card-border);
|
||
max-width: 220px;
|
||
backdrop-filter: blur(8px);
|
||
}
|
||
.lines-toggle h4 {
|
||
margin: 0; font-size: 13px; cursor: pointer; user-select: none;
|
||
display: flex; align-items: center; gap: 6px;
|
||
}
|
||
.lines-toggle h4 .toggle {
|
||
margin-left: auto; font-size: 10px; opacity: 0.6; transition: transform 0.2s;
|
||
}
|
||
.lines-toggle.open h4 .toggle { transform: rotate(180deg); }
|
||
.lines-toggle .body {
|
||
display: none; margin-top: 8px; max-height: 50vh; overflow-y: auto;
|
||
}
|
||
.lines-toggle.open .body { display: block; }
|
||
.lines-toggle label {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
margin: 3px 0;
|
||
cursor: pointer;
|
||
user-select: none;
|
||
}
|
||
.lines-toggle input { cursor: pointer; }
|
||
.lines-toggle .swatch {
|
||
display: inline-block;
|
||
width: 22px;
|
||
height: 4px;
|
||
border-radius: 2px;
|
||
}
|
||
.lines-toggle .group-header {
|
||
margin-top: 8px;
|
||
font-weight: 600;
|
||
font-size: 12px;
|
||
color: #aaa;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.5px;
|
||
}
|
||
.tram-stop-label-wrapper { background: none !important; border: none !important; }
|
||
.tram-stop-label {
|
||
background: rgba(255,255,255,0.95);
|
||
color: #1a1a1a;
|
||
padding: 2px 6px;
|
||
border-radius: 3px;
|
||
font-size: 10px;
|
||
font-weight: 600;
|
||
white-space: nowrap;
|
||
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
||
transform: translate(8px, -8px);
|
||
border: 1px solid #333;
|
||
}
|
||
|
||
/* ============================================================ */
|
||
/* TICKET-MODAL */
|
||
/* ============================================================ */
|
||
.ticket-btn {
|
||
background: rgba(30,30,30,0.95);
|
||
padding: 10px 14px;
|
||
border-radius: 8px;
|
||
color: #eee;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
border: 1px solid #444;
|
||
box-shadow: 0 2px 8px rgba(0,0,0,0.4);
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
transition: transform 0.15s, background 0.15s;
|
||
user-select: none;
|
||
}
|
||
.ticket-btn:hover {
|
||
background: rgba(50,50,50,0.95);
|
||
transform: translateY(-1px);
|
||
}
|
||
.ticket-btn:active { transform: translateY(0); }
|
||
|
||
.modal-overlay {
|
||
position: fixed;
|
||
top: 0; left: 0; right: 0; bottom: 0;
|
||
background: rgba(0,0,0,0.7);
|
||
display: none;
|
||
align-items: center;
|
||
justify-content: center;
|
||
z-index: 9999;
|
||
padding: 20px;
|
||
}
|
||
.modal-overlay.active { display: flex; }
|
||
.modal {
|
||
background: #1c1c1f;
|
||
color: #eee;
|
||
border-radius: 12px;
|
||
padding: 24px 28px;
|
||
max-width: 720px;
|
||
width: 100%;
|
||
max-height: 90vh;
|
||
overflow-y: auto;
|
||
box-shadow: 0 10px 40px rgba(0,0,0,0.6);
|
||
border: 1px solid #444;
|
||
}
|
||
.modal h2 { margin: 0 0 6px 0; font-size: 22px; }
|
||
.modal .modal-sub { color: #aaa; font-size: 13px; margin-bottom: 20px; }
|
||
.modal-close {
|
||
float: right;
|
||
background: none;
|
||
border: 1px solid #555;
|
||
color: #ccc;
|
||
width: 32px; height: 32px;
|
||
border-radius: 6px;
|
||
font-size: 18px;
|
||
cursor: pointer;
|
||
margin: -8px -8px 0 0;
|
||
}
|
||
.modal-close:hover { background: #333; color: white; }
|
||
|
||
.ticket-option {
|
||
background: #252528;
|
||
border-radius: 8px;
|
||
padding: 16px 18px;
|
||
margin-bottom: 14px;
|
||
border-left: 4px solid #3b82f6;
|
||
}
|
||
.ticket-option.recommended { border-left-color: #22c55e; }
|
||
.ticket-option.basic { border-left-color: #f59e0b; }
|
||
.ticket-option h3 {
|
||
margin: 0 0 6px 0;
|
||
font-size: 16px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
.ticket-option .badge {
|
||
display: inline-block;
|
||
font-size: 10px;
|
||
font-weight: 700;
|
||
padding: 2px 8px;
|
||
border-radius: 4px;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.5px;
|
||
}
|
||
.ticket-option.recommended .badge { background: #22c55e; color: #052e10; }
|
||
.ticket-option.basic .badge { background: #f59e0b; color: #1c1c1f; }
|
||
.ticket-option.prepaid .badge { background: #3b82f6; color: white; }
|
||
|
||
.ticket-option .price-row {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 12px;
|
||
margin: 8px 0;
|
||
font-size: 13px;
|
||
color: #ccc;
|
||
}
|
||
.ticket-option .price-row strong { color: #fff; font-size: 15px; }
|
||
.ticket-option ul {
|
||
margin: 6px 0 6px 0;
|
||
padding-left: 20px;
|
||
font-size: 13px;
|
||
color: #ccc;
|
||
}
|
||
.ticket-option ul li { margin: 3px 0; }
|
||
.ticket-option .btn-link {
|
||
display: inline-block;
|
||
margin-top: 8px;
|
||
padding: 7px 14px;
|
||
background: #3b82f6;
|
||
color: white;
|
||
text-decoration: none;
|
||
border-radius: 6px;
|
||
font-size: 13px;
|
||
font-weight: 600;
|
||
}
|
||
.ticket-option .btn-link:hover { background: #2563eb; }
|
||
.ticket-option .btn-link.green { background: #22c55e; color: #052e10; }
|
||
.ticket-option .btn-link.green:hover { background: #16a34a; }
|
||
|
||
.gruppe-tipp {
|
||
background: rgba(59,130,246,0.1);
|
||
border: 1px solid rgba(59,130,246,0.3);
|
||
border-radius: 8px;
|
||
padding: 12px 16px;
|
||
margin: 16px 0;
|
||
font-size: 13px;
|
||
color: #cbd5e1;
|
||
}
|
||
.gruppe-tipp strong { color: #93c5fd; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="header">
|
||
<h1>🥳 JGA Prag – Tourenplan mit ÖPNV</h1>
|
||
<div class="sub">25.–26. Juli 2026 · 8 Personen · Hotel Uno Prague als Basis · Daten: offizieller PID GTFS-Feed · Metro + Tram sauber verknüpft</div>
|
||
</div>
|
||
<a href="index.html" class="home-btn" title="Zurück zur Startseite">🏠 Startseite</a>
|
||
<button class="theme-toggle" id="theme-toggle" aria-label="Theme wechseln" title="Light/Dark Mode">🌙</button>
|
||
<div id="map"></div>
|
||
|
||
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
|
||
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
|
||
crossorigin=""></script>
|
||
<script>
|
||
const locations = [
|
||
{
|
||
name: "Hotel Uno Prague",
|
||
emoji: "🏨",
|
||
color: "#4fc3f7",
|
||
lat: 50.0717636, lon: 14.4999461,
|
||
address: "Štěchovická 2296/2a, Praha 10 – Strašnice",
|
||
desc: "Unsere Unterkunft. Tram 'Na Hroudě' (Linien 4, 13, 26) in 3 Min Fußweg.",
|
||
price: null,
|
||
url: "https://www.unoprague.cz",
|
||
category: "hotel"
|
||
},
|
||
{
|
||
name: "Endorfin Escape Games",
|
||
emoji: "🔐",
|
||
color: "#e91e63",
|
||
lat: 50.0639594, lon: 14.4520475,
|
||
address: "Petrohradská 216/3, Praha 10 – Vršovice",
|
||
desc: "Escape Rooms (Titanic, Saw, Freddy Krueger). Eingang vom Petrohradská-Hof. Max. 5 Pers/Raum → 2 Teams parallel.",
|
||
price: "ca. 20 € p.P. / 1h",
|
||
url: "https://endorfin.cz/en/escape-games/",
|
||
category: "action"
|
||
},
|
||
{
|
||
name: "KartPlanet Praha",
|
||
emoji: "🏎️",
|
||
color: "#ff9800",
|
||
lat: 50.0998466, lon: 14.5133693,
|
||
address: "Mezitraťová, Praha 9 – Hrdlořezy",
|
||
desc: "Indoor Go-Kart. Schnellste Karts in Prag, ca. 10 Min Heizerlebnis.",
|
||
price: "ca. 15 € p.P. / 10 min",
|
||
url: "https://kartplanet.cz/en/",
|
||
category: "action"
|
||
},
|
||
{
|
||
name: "Level Prague Minigolf",
|
||
emoji: "⛳",
|
||
color: "#66bb6a",
|
||
lat: 50.080850, lon: 14.425050,
|
||
address: "Národní 63/26, Praha 1 – Nové Město (im Máj – House of Fun)",
|
||
desc: "Indoor Minigolf mit Neon-Beleuchtung. Themen-Bahnen mit Überraschungen. Auch Bowling & Escape Rooms im selben Komplex.",
|
||
price: "ca. 25 € p.P. / 1h",
|
||
url: "https://levelsprague.com/de/minigolf/",
|
||
category: "fun"
|
||
},
|
||
{
|
||
name: "Bowling Ovčín",
|
||
emoji: "🎳",
|
||
color: "#ab47bc",
|
||
lat: 50.0537395, lon: 14.4875385,
|
||
address: "Záběhlická 82/3, Praha 10 – Záběhlice",
|
||
desc: "Bowling + Billard + Restaurant. 12 professionelle Bahnen mit Brunswick-Maschinen.",
|
||
price: "ca. 6 € p.P. / 2h",
|
||
url: "https://www.ovcin.cz/",
|
||
category: "fun"
|
||
},
|
||
{
|
||
name: "Mysterium Tours – Geister-Tour",
|
||
emoji: "👻",
|
||
color: "#7e57c2",
|
||
lat: 50.087800, lon: 14.420500,
|
||
address: "Treffpunkt: Cartier-Geschäft, Ecke Pařížská / Altstädter Ring",
|
||
desc: "Abendliche Geister-Tour durch die Altstadt. Geschichten & Legenden. Startzeiten 19:45 / 20:00 / 20:15, Dauer ~1:45h.",
|
||
price: "ca. 20 € p.P. / 2h",
|
||
url: "https://www.mysteriumtours.com/de/prag/prager-geister-tour/",
|
||
category: "sight"
|
||
},
|
||
{
|
||
name: "Prague Ranger (Schießstand)",
|
||
emoji: "🎯",
|
||
color: "#5d4037",
|
||
lat: 50.0714571, lon: 14.4320070,
|
||
address: "Shuttle-Pickup: Lublaňská 1729/23, Praha 2 – Vyšehrad",
|
||
desc: "Outdoor-Schießstand, ca. 45 Min vom Stadtzentrum. Shuttle im Preis inklusive. 25–500 m Bahnen. Genaue Range-Adresse wird nach Buchung per Mail mitgeteilt.",
|
||
price: "ca. 100–200 € p.P. / 3–4h",
|
||
url: "https://www.pragueranger.cz/de/",
|
||
category: "action"
|
||
},
|
||
{
|
||
name: "Beer Boat Prague",
|
||
emoji: "⛵",
|
||
color: "#ffb300",
|
||
lat: 50.0941774, lon: 14.4269959,
|
||
address: "Startpunkt: Štefánikův most (Dvořákovo nábřeží), Praha 1",
|
||
desc: "Tretboot-Biertour auf der Moldau. Privater Kapitän, unbegrenzt Bier. Büro: Týnská 639/4.",
|
||
price: "ca. 45 € p.P. / 1h",
|
||
url: "https://beerboatsprague.com/de/Prague-Beer-Boat-Tour",
|
||
category: "fun"
|
||
},
|
||
{
|
||
name: "Paintball Game Praha",
|
||
emoji: "🎨",
|
||
color: "#ef5350",
|
||
lat: 50.0748169, lon: 14.3713262,
|
||
address: "Pod Císařkou, Praha 5 – Buďánka",
|
||
desc: "Paintball mit Reball (kein Schmerz, wiederverwendbare Bälle). Indoor + Outdoor.",
|
||
price: "ca. 24 € p.P. / 1h",
|
||
url: "https://www.paintballgame.cz/de/paintball-pakete/reball",
|
||
category: "action"
|
||
},
|
||
{
|
||
name: "FunArena Axtwerfen",
|
||
emoji: "🪓",
|
||
color: "#a16207",
|
||
lat: 50.0657300, lon: 14.4386789,
|
||
address: "Bělehradská, Praha 4 – Nusle (10 Min Fußweg von Metro C)",
|
||
desc: "Axtwerfen — hipper Trend, perfekt für Gruppen. Indoor. Min. 6 Personen, Coaching inklusive.",
|
||
price: "ca. 16 € p.P. / 1h",
|
||
url: "https://www.funarena.cz/en/activities/axe-throwing",
|
||
category: "action"
|
||
},
|
||
{
|
||
name: "Mercuria Laser Game Pankrác",
|
||
emoji: "🔫",
|
||
color: "#26c6da",
|
||
lat: 50.0501649, lon: 14.4432250,
|
||
address: "Budějovická 409/1a, Praha 4 – Pankrác (Metro C)",
|
||
desc: "Lasertag Arena. Mehrere Etagen mit Hindernissen.",
|
||
price: "ca. 7 € p.P. / 20 min",
|
||
url: "https://mercurialaser.cz/en/pankrac/",
|
||
category: "action"
|
||
},
|
||
{
|
||
name: "Enigma – Outdoor City Adventure",
|
||
emoji: "🔍",
|
||
color: "#ffa726",
|
||
lat: 50.0875, lon: 14.4213,
|
||
address: "Symbolischer Startpunkt: Altstädter Ring (Staroměstské náměstí)",
|
||
desc: "Stadtweites Mobile-App Mystery-Spiel. Per GPS durch ganz Prag.",
|
||
price: "ca. 5 € p.P. / 1–2h",
|
||
url: "https://enigma.swallnet.com/index.php/odkaz-mistra-hvezdare-en/",
|
||
category: "fun"
|
||
}
|
||
];
|
||
|
||
const IMPORTANT_STOPS = [
|
||
{ name: "Na Hroudě", lines: ["4","13","26"], lat: 50.0700, lon: 14.4893, near: "Hotel Uno" },
|
||
{ name: "Kubánské náměstí", lines: ["5","7","10","16"], lat: 50.0701, lon: 14.4596, near: "Endorfin" },
|
||
{ name: "Národní divadlo", lines: ["2","9","18","22"], lat: 50.0813, lon: 14.4127, near: "Level Minigolf" },
|
||
{ name: "Vinice", lines: ["4","7","13","22"], lat: 50.0703, lon: 14.4771, near: "Bowling Ovčín" },
|
||
{ name: "Staroměstská", lines: ["2","17","18","41"],lat: 50.0880, lon: 14.4208, near: "Mysterium" },
|
||
{ name: "Lublaňská", lines: ["4","13","16"], lat: 50.0721, lon: 14.4267, near: "Prague Ranger" },
|
||
{ name: "Štefánikův most", lines: ["2","41"], lat: 50.0942, lon: 14.4182, near: "Beer Boat" },
|
||
{ name: "Náměstí Míru (A)", lines: ["A"], lat: 50.0752, lon: 14.4379, near: "Vinohrady" },
|
||
{ name: "Můstek (A/B)", lines: ["A","B"], lat: 50.0816, lon: 14.4253, near: "Stadtmitte" },
|
||
{ name: "Národní třída (B)", lines: ["B"], lat: 50.0814, lon: 14.4186, near: "Level Minigolf" },
|
||
{ name: "I. P. Pavlova (C)", lines: ["C"], lat: 50.0756, lon: 14.4279, near: "Prague Ranger" },
|
||
{ name: "Vyšehrad (C)", lines: ["C"], lat: 50.0646, lon: 14.4175, near: "Süd-Altstadt" },
|
||
{ name: "Budějovická (C)", lines: ["C"], lat: 50.0632, lon: 14.4470, near: "Mercuria" },
|
||
{ name: "Strašnická (A)", lines: ["A"], lat: 50.0726, lon: 14.4905, near: "Hotel Uno" },
|
||
{ name: "Anděl (B)", lines: ["B"], lat: 50.0707, lon: 14.4028, near: "Smíchov" }
|
||
];
|
||
|
||
const LINES_CONFIG = {
|
||
// Metro: offizielle DPP-Farben (PID GTFS)
|
||
"metro_A": { color: "#00A562", weight: 7, opacity: 0.95 },
|
||
"metro_B": { color: "#F8B322", weight: 7, opacity: 0.95 },
|
||
"metro_C": { color: "#CF003D", weight: 7, opacity: 0.95 },
|
||
// Tram: eindeutiges Hellblau (#06b6d4 cyan-500) — gut sichtbar auf dunkler Karte,
|
||
// kollidiert nicht mit Metro A (grün), B (gelb-orange), C (rot)
|
||
"tram_2": { color: "#06b6d4", weight: 6, opacity: 0.95 },
|
||
"tram_4": { color: "#06b6d4", weight: 6, opacity: 0.95 },
|
||
"tram_7": { color: "#06b6d4", weight: 6, opacity: 0.95 },
|
||
"tram_13": { color: "#06b6d4", weight: 6, opacity: 0.95 },
|
||
"tram_17": { color: "#06b6d4", weight: 6, opacity: 0.95 },
|
||
"tram_18": { color: "#06b6d4", weight: 6, opacity: 0.95 },
|
||
"tram_22": { color: "#06b6d4", weight: 6, opacity: 0.95 }
|
||
};
|
||
|
||
const LINES = {
|
||
"metro_A": [[[50.075332, 14.341321], [50.075594, 14.342145], [50.075867, 14.343022], [50.07599, 14.343357], [50.076157, 14.343775], [50.076298, 14.344109], [50.07654, 14.3446], [50.076711, 14.344901], [50.076966, 14.34531], [50.077208, 14.345657], [50.077502, 14.346031], [50.077924, 14.346474], [50.078529, 14.34699], [50.078862, 14.347218], [50.079193, 14.347392], [50.079645, 14.34759], [50.079759, 14.347632], [50.079882, 14.347665], [50.080171, 14.347736], [50.080497, 14.347796], [50.08078, 14.347826], [50.080996, 14.347828], [50.081292, 14.347813], [50.08145, 14.347797], [50.081768, 14.347744], [50.081951, 14.347703], [50.082166, 14.347643], [50.082383, 14.347566], [50.082627, 14.347467], [50.082954, 14.347308], [50.083329, 14.347085], [50.083864, 14.346751], [50.085803, 14.345539], [50.086015, 14.345405], [50.086603, 14.345034], [50.086718, 14.344961], [50.08785, 14.344271], [50.088324, 14.343981], [50.088695, 14.343775], [50.089279, 14.343528], [50.089382, 14.343492], [50.089641, 14.343422], [50.089935, 14.343362], [50.09018, 14.343332], [50.090399, 14.343319], [50.090809, 14.343324], [50.091003, 14.34334], [50.091181, 14.343365], [50.091468, 14.343427], [50.091571, 14.343451], [50.091813, 14.34353], [50.091943, 14.343582], [50.092245, 14.343703], [50.092389, 14.343772], [50.092741, 14.343974], [50.093027, 14.344165], [50.093354, 14.344422], [50.093759, 14.344791], [50.093985, 14.345034], [50.094257, 14.345356], [50.094555, 14.34576], [50.095053, 14.346548], [50.095242, 14.346923], [50.095664, 14.347867], [50.095956, 14.348552], [50.096195, 14.349086], [50.096689, 14.350228], [50.096895, 14.350758], [50.097188, 14.351681], [50.097302, 14.352103], [50.097442, 14.352704], [50.097607, 14.353579], [50.097719, 14.354462], [50.097812, 14.355624], [50.097903, 14.356836], [50.097994, 14.358134], [50.098065, 14.359125], [50.098132, 14.360073], [50.098202, 14.360937], [50.098375, 14.362843], [50.098381, 14.362916], [50.098547, 14.364746], [50.098585, 14.365114], [50.098647, 14.365631], [50.098711, 14.36626], [50.098762, 14.366869], [50.098896, 14.368583], [50.09898, 14.369534], [50.099122, 14.37128], [50.099254, 14.372948], [50.099344, 14.374072], [50.099477, 14.375693], [50.099546, 14.37651], [50.099695, 14.378472], [50.099746, 14.379203], [50.099822, 14.380572], [50.099939, 14.382796], [50.100057, 14.385068], [50.100176, 14.387344], [50.100255, 14.388846], [50.10028, 14.389334], [50.100307, 14.389848], [50.100352, 14.390703], [50.100403, 14.391686], [50.100478, 14.39313], [50.100482, 14.393212], [50.100541, 14.394568], [50.100547, 14.394813], [50.100545, 14.395116], [50.100523, 14.395542], [50.100504, 14.395755], [50.100477, 14.395961], [50.100426, 14.396271], [50.10037, 14.396556], [50.100301, 14.396836], [50.100206, 14.397154], [50.100047, 14.397593], [50.099852, 14.398009], [50.099671, 14.398335], [50.099492, 14.398606], [50.09885, 14.399484], [50.098689, 14.399696], [50.098392, 14.400146], [50.098269, 14.400365], [50.098097, 14.400712], [50.097968, 14.40103], [50.09784, 14.401421], [50.097728, 14.401874], [50.09747, 14.403074], [50.097433, 14.403243], [50.097162, 14.404511], [50.097094, 14.404765], [50.096942, 14.40522], [50.096743, 14.405719], [50.09662, 14.405977], [50.096466, 14.406245], [50.096277, 14.406525], [50.096079, 14.406786], [50.095941, 14.406948], [50.095755, 14.407118], [50.095415, 14.407379], [50.095186, 14.407524], [50.095012, 14.407602], [50.094561, 14.407794], [50.093846, 14.408075], [50.093273, 14.408331], [50.092879, 14.408542], [50.091697, 14.409217], [50.091645, 14.409247], [50.090669, 14.409842], [50.090401, 14.410068], [50.090184, 14.41029], [50.089995, 14.410516], [50.089671, 14.411001], [50.089355, 14.41163], [50.089268, 14.411855], [50.089143, 14.412229], [50.089044, 14.412633], [50.088969, 14.413068], [50.088913, 14.413445], [50.088798, 14.414527], [50.088722, 14.415273], [50.088679, 14.415585], [50.088616, 14.415972], [50.088564, 14.416225], [50.088218, 14.417644], [50.088051, 14.418313], [50.087789, 14.419354], [50.087712, 14.419602], [50.087629, 14.419849], [50.0874, 14.420444], [50.087267, 14.420733], [50.08713, 14.420971], [50.086984, 14.421198], [50.086664, 14.421592], [50.086272, 14.421962], [50.08573, 14.422343], [50.085104, 14.422768], [50.084863, 14.422957], [50.08473, 14.423076], [50.084441, 14.423345], [50.084306, 14.423511], [50.083569, 14.424521], [50.08352, 14.424587], [50.082645, 14.425752], [50.08215, 14.426439], [50.082017, 14.426684], [50.081885, 14.426971], [50.081326, 14.428511], [50.081083, 14.42915], [50.080954, 14.429459], [50.080715, 14.429926], [50.080102, 14.430785], [50.07947, 14.431651], [50.079287, 14.431917], [50.078792, 14.432587], [50.078485, 14.43291], [50.078129, 14.433223], [50.077834, 14.433419], [50.077141, 14.433883], [50.076616, 14.434371], [50.076294, 14.434775], [50.075866, 14.435545], [50.075659, 14.436024], [50.075507, 14.436533], [50.075441, 14.436858], [50.075349, 14.437448], [50.075306, 14.437835], [50.075296, 14.438213], [50.075302, 14.439047], [50.075303, 14.439183], [50.075318, 14.441765], [50.075331, 14.442713], [50.075349, 14.443298], [50.075401, 14.443942], [50.075496, 14.444591], [50.075652, 14.445286], [50.075814, 14.445772], [50.076222, 14.446734], [50.076525, 14.447353], [50.07694, 14.448172], [50.077122, 14.448588], [50.0773, 14.449111], [50.077693, 14.450645], [50.07774, 14.450835], [50.078109, 14.452384], [50.078239, 14.453167], [50.078296, 14.453773], [50.078306, 14.454459], [50.078203, 14.456268], [50.0781, 14.457969], [50.078074, 14.45844], [50.078048, 14.459142], [50.078039, 14.459806], [50.078053, 14.460396], [50.078095, 14.460968], [50.078213, 14.462024], [50.078246, 14.462315], [50.078528, 14.46474], [50.078765, 14.466781], [50.078973, 14.468598], [50.079103, 14.469839], [50.079136, 14.47064], [50.0791, 14.471559], [50.079051, 14.472111], [50.079002, 14.472479], [50.078901, 14.473128], [50.078727, 14.473864], [50.078299, 14.475431], [50.07827, 14.475537], [50.077944, 14.476732], [50.077776, 14.477351], [50.077655, 14.477794], [50.077301, 14.479092], [50.077222, 14.479385], [50.076984, 14.480256], [50.076709, 14.48124], [50.076537, 14.48175], [50.076387, 14.482099], [50.076173, 14.482542], [50.075658, 14.483565], [50.0754, 14.484091], [50.074927, 14.485214], [50.074711, 14.485839], [50.074562, 14.486331], [50.074285, 14.487365], [50.074169, 14.487818], [50.074048, 14.48825], [50.073925, 14.488633], [50.073791, 14.488992], [50.073654, 14.489304], [50.07355, 14.489536], [50.073098, 14.490458], [50.072713, 14.491268], [50.072527, 14.49166], [50.072263, 14.492215], [50.072192, 14.492366], [50.071902, 14.49295], [50.071745, 14.49327], [50.071416, 14.493958], [50.071288, 14.49423], [50.070968, 14.494916], [50.070431, 14.496107], [50.069616, 14.498001], [50.069324, 14.498759], [50.068791, 14.500477], [50.068498, 14.501802], [50.068358, 14.503067], [50.068316, 14.503786], [50.068296, 14.504991], [50.068303, 14.505489], [50.068334, 14.50621], [50.068346, 14.506472], [50.06838, 14.506985], [50.068441, 14.507884], [50.068451, 14.508041], [50.068533, 14.509453], [50.068588, 14.510337], [50.068642, 14.510774], [50.068737, 14.511249], [50.068877, 14.51177], [50.068979, 14.512047], [50.069153, 14.512475], [50.069347, 14.512833], [50.069566, 14.513147], [50.069723, 14.513349], [50.069936, 14.513552], [50.070132, 14.513709], [50.07039, 14.513885], [50.070864, 14.514111], [50.071328, 14.514333], [50.071774, 14.514527], [50.072109, 14.514623], [50.072297, 14.514648], [50.072565, 14.514622], [50.072744, 14.514565], [50.073136, 14.514455], [50.073324, 14.514433], [50.07345, 14.51445], [50.073603, 14.514499], [50.073875, 14.514619], [50.074124, 14.514734], [50.075079, 14.515175]], [[50.075093, 14.515182], [50.07416, 14.514751], [50.073887, 14.514625], [50.073716, 14.514546], [50.07352, 14.514472], [50.073387, 14.514437], [50.073259, 14.514435], [50.073003, 14.51449], [50.072642, 14.5146], [50.072446, 14.514642], [50.072205, 14.514639], [50.0719, 14.514565], [50.071649, 14.514483], [50.070987, 14.51417], [50.070514, 14.513944], [50.070259, 14.513801], [50.06998, 14.513587], [50.069829, 14.51346], [50.069617, 14.513218], [50.069515, 14.513076], [50.069247, 14.51265], [50.06906, 14.512258], [50.068934, 14.511926], [50.068798, 14.511494], [50.068682, 14.510994], [50.06861, 14.510552], [50.06857, 14.510088], [50.068525, 14.509324], [50.068446, 14.507963], [50.068439, 14.50786], [50.068374, 14.506885], [50.068339, 14.506307], [50.068315, 14.505768], [50.068301, 14.505265], [50.068296, 14.504493], [50.068338, 14.503381], [50.068413, 14.502428], [50.068637, 14.501128], [50.069028, 14.499697], [50.069415, 14.498518], [50.070123, 14.496794], [50.070873, 14.49512], [50.071145, 14.494539], [50.071353, 14.494093], [50.071613, 14.493537], [50.071784, 14.49319], [50.072068, 14.492628], [50.072233, 14.492279], [50.072481, 14.491756], [50.072666, 14.491367], [50.073075, 14.490508], [50.073117, 14.490421], [50.073613, 14.489395], [50.073695, 14.489214], [50.073882, 14.488759], [50.073969, 14.488506], [50.074109, 14.488047], [50.074223, 14.487608], [50.074442, 14.486764], [50.074637, 14.486084], [50.074779, 14.485643], [50.075316, 14.484267], [50.075566, 14.48375], [50.076134, 14.48262], [50.076266, 14.482358], [50.076472, 14.481907], [50.076595, 14.481584], [50.076859, 14.480711], [50.077163, 14.479599], [50.077263, 14.479235], [50.077522, 14.478282], [50.077683, 14.47769], [50.077782, 14.477329], [50.077997, 14.476541], [50.078284, 14.475485], [50.078672, 14.474068], [50.078755, 14.473747], [50.078972, 14.472707], [50.079029, 14.47228], [50.079071, 14.471942], [50.079129, 14.470998], [50.079125, 14.470267], [50.079063, 14.469431], [50.07894, 14.468286], [50.078735, 14.46652], [50.078488, 14.464398], [50.078229, 14.462166], [50.078141, 14.461381], [50.078067, 14.460623], [50.078042, 14.460099], [50.07804, 14.459475], [50.078064, 14.458675], [50.078086, 14.458206], [50.078184, 14.456586], [50.07829, 14.454836], [50.078306, 14.454086], [50.078272, 14.453459], [50.078193, 14.452872], [50.078013, 14.451931], [50.077713, 14.450726], [50.077412, 14.449527], [50.077183, 14.448767], [50.077063, 14.448445], [50.076811, 14.447911], [50.0763, 14.446893], [50.075975, 14.446208], [50.075729, 14.445533], [50.07555, 14.444847], [50.075448, 14.444329], [50.075372, 14.443619], [50.075337, 14.443006], [50.075326, 14.442365], [50.075311, 14.440593], [50.075303, 14.439111], [50.075297, 14.438369], [50.075299, 14.437969], [50.075318, 14.437705], [50.075383, 14.437197], [50.07547, 14.436693], [50.075576, 14.436276], [50.075771, 14.435756], [50.075963, 14.435335], [50.076452, 14.434564], [50.076962, 14.434022], [50.077324, 14.433762], [50.077983, 14.433322], [50.0783, 14.433081], [50.078648, 14.432754], [50.079037, 14.432257], [50.079436, 14.431701], [50.079499, 14.431612], [50.080594, 14.430109], [50.080814, 14.42974], [50.081019, 14.429313], [50.081188, 14.428873], [50.081685, 14.427473], [50.081944, 14.426835], [50.082082, 14.426562], [50.082527, 14.42591], [50.082853, 14.425476], [50.083542, 14.424558], [50.084162, 14.423709], [50.084372, 14.423424], [50.084596, 14.423199], [50.084743, 14.423064], [50.084981, 14.422861], [50.08535, 14.422602], [50.086035, 14.422137], [50.086479, 14.421778], [50.086829, 14.421401], [50.087055, 14.42109], [50.087202, 14.420852], [50.087336, 14.420592], [50.087521, 14.420141], [50.087669, 14.419726], [50.087752, 14.419483], [50.087946, 14.418729], [50.088202, 14.417707], [50.088228, 14.417602], [50.088592, 14.416099], [50.088659, 14.415712], [50.088696, 14.415482], [50.088783, 14.414688], [50.088856, 14.413942], [50.088939, 14.413249], [50.089004, 14.412851], [50.089091, 14.41243], [50.089203, 14.412041], [50.089311, 14.41174], [50.089522, 14.411269], [50.089841, 14.410732], [50.090088, 14.4104], [50.090287, 14.410178], [50.090536, 14.409948], [50.090973, 14.409648], [50.091668, 14.409233], [50.092608, 14.408697], [50.09297, 14.40849], [50.093566, 14.408188], [50.09392, 14.408045], [50.094798, 14.407691], [50.095082, 14.40757], [50.095275, 14.40747], [50.095562, 14.407264], [50.09585, 14.407038], [50.09601, 14.406872], [50.096178, 14.406661], [50.096375, 14.406385], [50.096544, 14.406113], [50.096682, 14.405853], [50.096849, 14.405466], [50.097028, 14.404979], [50.097131, 14.404638], [50.09722, 14.404242], [50.097446, 14.403183], [50.097707, 14.401972], [50.097783, 14.40164], [50.097906, 14.401202], [50.098044, 14.400839], [50.098155, 14.400589], [50.098337, 14.400234], [50.098583, 14.399843], [50.09871, 14.399667], [50.099166, 14.399063], [50.09961, 14.398431], [50.099765, 14.398179], [50.099948, 14.397812], [50.100121, 14.397398], [50.100256, 14.396997], [50.100336, 14.396706], [50.100397, 14.396422], [50.100451, 14.396121], [50.100493, 14.395863], [50.100515, 14.39565], [50.10054, 14.395257], [50.100548, 14.394959], [50.100545, 14.394715], [50.100528, 14.394245], [50.10048, 14.393162], [50.100406, 14.391739], [50.100368, 14.391008], [50.100345, 14.390576], [50.100305, 14.389818], [50.100272, 14.389183], [50.100204, 14.387873], [50.100124, 14.386346], [50.100029, 14.384524], [50.099924, 14.382518], [50.099812, 14.380389], [50.099719, 14.378816], [50.099659, 14.377998], [50.099529, 14.376314], [50.099403, 14.374814], [50.099296, 14.373481], [50.099163, 14.3718], [50.099078, 14.370722], [50.098938, 14.369059], [50.09879, 14.367233], [50.098742, 14.366621], [50.098676, 14.365898], [50.098617, 14.365377], [50.098566, 14.364938], [50.098462, 14.363839], [50.098378, 14.36288], [50.098235, 14.3613], [50.098178, 14.360676], [50.098089, 14.359463], [50.098038, 14.358761], [50.097916, 14.357013], [50.097877, 14.356485], [50.097754, 14.354846], [50.097672, 14.354019], [50.097523, 14.353083], [50.097358, 14.352335], [50.097248, 14.351896], [50.096951, 14.350923], [50.096814, 14.350539], [50.096625, 14.350081], [50.095968, 14.34858], [50.095943, 14.348522], [50.095321, 14.347089], [50.09516, 14.346759], [50.094837, 14.34619], [50.094402, 14.345546], [50.094077, 14.345141], [50.093893, 14.344933], [50.093558, 14.3446], [50.093217, 14.344309], [50.092842, 14.344038], [50.092535, 14.343851], [50.092314, 14.343735], [50.092139, 14.343657], [50.091878, 14.343555], [50.091681, 14.343485], [50.091519, 14.343437], [50.09127, 14.343383], [50.091091, 14.343352], [50.090891, 14.343326], [50.09059, 14.343316], [50.090297, 14.343321], [50.090011, 14.343352], [50.08985, 14.343379], [50.0895, 14.343459], [50.089339, 14.343506], [50.08915, 14.343583], [50.088585, 14.34383], [50.087917, 14.344229], [50.086746, 14.344944], [50.086688, 14.34498], [50.086561, 14.345061], [50.085977, 14.345429], [50.083885, 14.346738], [50.083728, 14.346836], [50.083108, 14.34722], [50.082813, 14.347376], [50.082511, 14.347517], [50.082274, 14.347607], [50.082041, 14.347682], [50.081861, 14.347725], [50.081551, 14.347782], [50.081325, 14.34781], [50.081123, 14.347824], [50.080907, 14.347832], [50.080646, 14.347816], [50.080358, 14.347776], [50.079971, 14.347689], [50.079822, 14.347651], [50.079707, 14.347614], [50.079403, 14.347488], [50.079017, 14.347302], [50.078717, 14.347122], [50.078286, 14.34681], [50.077754, 14.346309], [50.077318, 14.3458], [50.077091, 14.345497], [50.076808, 14.345055], [50.076682, 14.344851], [50.076388, 14.344303], [50.076207, 14.343901], [50.076082, 14.343589], [50.075939, 14.343224], [50.075804, 14.342825], [50.07545, 14.341693]]],
|
||
"metro_B": [[[50.053265, 14.291142], [50.052133, 14.292246], [50.050835, 14.293512], [50.049373, 14.294938], [50.048321, 14.296116], [50.047877, 14.29678], [50.047309, 14.297853], [50.046856, 14.29907], [50.046499, 14.300505], [50.046383, 14.301331], [50.046351, 14.30223], [50.046398, 14.303065], [50.046542, 14.304711], [50.046683, 14.306279], [50.046851, 14.308171], [50.047049, 14.310408], [50.047246, 14.312623], [50.047464, 14.315094], [50.047476, 14.31552], [50.04747, 14.315975], [50.047442, 14.316409], [50.047387, 14.316896], [50.047292, 14.317438], [50.047169, 14.317958], [50.046803, 14.31899], [50.045684, 14.321341], [50.044983, 14.322773], [50.044749, 14.323332], [50.044471, 14.324179], [50.044295, 14.325019], [50.044195, 14.325899], [50.044176, 14.326471], [50.044234, 14.327405], [50.044503, 14.330451], [50.044594, 14.331506], [50.044669, 14.332222], [50.044795, 14.332956], [50.045009, 14.333727], [50.045236, 14.334339], [50.045555, 14.33494], [50.04574, 14.335204], [50.046024, 14.335554], [50.046754, 14.336204], [50.048347, 14.337532], [50.048619, 14.337802], [50.048858, 14.338114], [50.049103, 14.338509], [50.049293, 14.338907], [50.049422, 14.339257], [50.049563, 14.339696], [50.049737, 14.340401], [50.049866, 14.341182], [50.049904, 14.341489], [50.050023, 14.342856], [50.050337, 14.346403], [50.050518, 14.348442], [50.05064, 14.349804], [50.05075, 14.351038], [50.050851, 14.352173], [50.050971, 14.353532], [50.051242, 14.35661], [50.051523, 14.359768], [50.051776, 14.362517], [50.051873, 14.36313], [50.052053, 14.363859], [50.052372, 14.364703], [50.053209, 14.366659], [50.053515, 14.367456], [50.053739, 14.368199], [50.054228, 14.369912], [50.055062, 14.372938], [50.055836, 14.375746], [50.056213, 14.377065], [50.056655, 14.378354], [50.057087, 14.379485], [50.057937, 14.381489], [50.05811, 14.381956], [50.0583, 14.38263], [50.058432, 14.383318], [50.058516, 14.384048], [50.05854, 14.384648], [50.05852, 14.385283], [50.05844, 14.38608], [50.058106, 14.387816], [50.057743, 14.389561], [50.05755, 14.390395], [50.057381, 14.390881], [50.057202, 14.391307], [50.057025, 14.391668], [50.056631, 14.39233], [50.055508, 14.394113], [50.055087, 14.395105], [50.054884, 14.395883], [50.054756, 14.396631], [50.054713, 14.397196], [50.054701, 14.397808], [50.054747, 14.398547], [50.055142, 14.402132], [50.055401, 14.404616], [50.055605, 14.406003], [50.055868, 14.406918], [50.056191, 14.407663], [50.056538, 14.408199], [50.05709, 14.408798], [50.057541, 14.409145], [50.057807, 14.409274], [50.058537, 14.409438], [50.05884, 14.409442], [50.059359, 14.409359], [50.059701, 14.409315], [50.060309, 14.409237], [50.061275, 14.409117], [50.062291, 14.408986], [50.062729, 14.408877], [50.063381, 14.40852], [50.063906, 14.408078], [50.064177, 14.407771], [50.064623, 14.407108], [50.065144, 14.406147], [50.065554, 14.40537], [50.066204, 14.40449], [50.066825, 14.403948], [50.067707, 14.403551], [50.068099, 14.403495], [50.068417, 14.403493], [50.068813, 14.403549], [50.070015, 14.403816], [50.071055, 14.404079], [50.071635, 14.404364], [50.071962, 14.40461], [50.072284, 14.404912], [50.07257, 14.405264], [50.072861, 14.405719], [50.073218, 14.406502], [50.073437, 14.407307], [50.073582, 14.40838], [50.073591, 14.408945], [50.073571, 14.40954], [50.073331, 14.411972], [50.073291, 14.412748], [50.073318, 14.413392], [50.073381, 14.413964], [50.073545, 14.414706], [50.073757, 14.415326], [50.073914, 14.415677], [50.074591, 14.416965], [50.075228, 14.418132], [50.075879, 14.419041], [50.076186, 14.419361], [50.076758, 14.419791], [50.07725, 14.420033], [50.077681, 14.420177], [50.078401, 14.42025], [50.079939, 14.420297], [50.080504, 14.420329], [50.080939, 14.42042], [50.081321, 14.420582], [50.081886, 14.420962], [50.082399, 14.421488], [50.082671, 14.421876], [50.082895, 14.422303], [50.083392, 14.423307], [50.083676, 14.423907], [50.0841, 14.424791], [50.084322, 14.425184], [50.084618, 14.425561], [50.084787, 14.425749], [50.085218, 14.426103], [50.085632, 14.426358], [50.086159, 14.426651], [50.086647, 14.426908], [50.086932, 14.427117], [50.08735, 14.427507], [50.087598, 14.427807], [50.088081, 14.42859], [50.088272, 14.429052], [50.08881, 14.430594], [50.08939, 14.432211], [50.090121, 14.434337], [50.090247, 14.434833], [50.090377, 14.435547], [50.090436, 14.436095], [50.090466, 14.43694], [50.090494, 14.437657], [50.090564, 14.43924], [50.090593, 14.440492], [50.09062, 14.44163], [50.090666, 14.442862], [50.090958, 14.444527], [50.091151, 14.445373], [50.091828, 14.448262], [50.092223, 14.449937], [50.092587, 14.451481], [50.093124, 14.453742], [50.093415, 14.454766], [50.094249, 14.456853], [50.094997, 14.458691], [50.095677, 14.460375], [50.096548, 14.462518], [50.097414, 14.464652], [50.0977, 14.465327], [50.098084, 14.466144], [50.09835, 14.466591], [50.098883, 14.467299], [50.099312, 14.467824], [50.100911, 14.469632], [50.10202, 14.470899], [50.102373, 14.471355], [50.102723, 14.471829], [50.102966, 14.472259], [50.103302, 14.472972], [50.103767, 14.474185], [50.10422, 14.475392], [50.10456, 14.476352], [50.104733, 14.476917], [50.104906, 14.477757], [50.104969, 14.478204], [50.10501, 14.478908], [50.105005, 14.479485], [50.104978, 14.479963], [50.104701, 14.483706], [50.104635, 14.484685], [50.104622, 14.485431], [50.104659, 14.486234], [50.104814, 14.487447], [50.104999, 14.488287], [50.105273, 14.489197], [50.106178, 14.491737], [50.106586, 14.492933], [50.106889, 14.493815], [50.107032, 14.49423], [50.107406, 14.495267], [50.107611, 14.495746], [50.107882, 14.496215], [50.108449, 14.497095], [50.108781, 14.497615], [50.109115, 14.498192], [50.109412, 14.498929], [50.109769, 14.500069], [50.110112, 14.50125], [50.110451, 14.502378], [50.110584, 14.502886], [50.110714, 14.503561], [50.110776, 14.503998], [50.110819, 14.504444], [50.110844, 14.50491], [50.110843, 14.505694], [50.110803, 14.506286], [50.110453, 14.508682], [50.110356, 14.509444], [50.110283, 14.510621], [50.110313, 14.512641], [50.110366, 14.51479], [50.110413, 14.516581], [50.110441, 14.517931], [50.110495, 14.520777], [50.110478, 14.521822], [50.110373, 14.522826], [50.110033, 14.524374], [50.10977, 14.525217], [50.109084, 14.52667], [50.108451, 14.527848], [50.108064, 14.528613], [50.107688, 14.529611], [50.107494, 14.530303], [50.107304, 14.531144], [50.107127, 14.532442], [50.1067, 14.536372], [50.106534, 14.537821], [50.106418, 14.538897], [50.106363, 14.539725], [50.10636, 14.540595], [50.106415, 14.541574], [50.106618, 14.543625], [50.106969, 14.547143], [50.107077, 14.548673], [50.107083, 14.549166], [50.107068, 14.549593], [50.107008, 14.550241], [50.106941, 14.550698], [50.106494, 14.553131], [50.106295, 14.55434], [50.106224, 14.555175], [50.106225, 14.555802], [50.106267, 14.556648], [50.106597, 14.55887], [50.10686, 14.560516], [50.107304, 14.563116], [50.107513, 14.564369], [50.107691, 14.565517], [50.10792, 14.56726], [50.108015, 14.568235], [50.108186, 14.570108], [50.10833, 14.571757], [50.108499, 14.573401], [50.10869, 14.574901], [50.10893, 14.576781]], [[50.10893, 14.576781], [50.10869, 14.574901], [50.108499, 14.573401], [50.10833, 14.571757], [50.108186, 14.570108], [50.108015, 14.568235], [50.10792, 14.56726], [50.107691, 14.565517], [50.107513, 14.564369], [50.107304, 14.563116], [50.10686, 14.560516], [50.106597, 14.55887], [50.106267, 14.556648], [50.106225, 14.555802], [50.106224, 14.555175], [50.106295, 14.55434], [50.106494, 14.553131], [50.106941, 14.550698], [50.107008, 14.550241], [50.107068, 14.549593], [50.107083, 14.549166], [50.107077, 14.548673], [50.106969, 14.547143], [50.106618, 14.543625], [50.106415, 14.541574], [50.10636, 14.540595], [50.106363, 14.539725], [50.106418, 14.538897], [50.106534, 14.537821], [50.1067, 14.536372], [50.107127, 14.532442], [50.107304, 14.531144], [50.107494, 14.530303], [50.107688, 14.529611], [50.108064, 14.528613], [50.108451, 14.527848], [50.109084, 14.52667], [50.10977, 14.525217], [50.110033, 14.524374], [50.110373, 14.522826], [50.110478, 14.521822], [50.110495, 14.520777], [50.110441, 14.517931], [50.110413, 14.516581], [50.110366, 14.51479], [50.110313, 14.512641], [50.110283, 14.510621], [50.110356, 14.509444], [50.110453, 14.508682], [50.110803, 14.506286], [50.110843, 14.505694], [50.110844, 14.50491], [50.110819, 14.504444], [50.110776, 14.503998], [50.110714, 14.503561], [50.110584, 14.502886], [50.110451, 14.502378], [50.110112, 14.50125], [50.109769, 14.500069], [50.109412, 14.498929], [50.109115, 14.498192], [50.108781, 14.497615], [50.108449, 14.497095], [50.107882, 14.496215], [50.107611, 14.495746], [50.107406, 14.495267], [50.107032, 14.49423], [50.106889, 14.493815], [50.106586, 14.492933], [50.106178, 14.491737], [50.105273, 14.489197], [50.104999, 14.488287], [50.104814, 14.487447], [50.104659, 14.486234], [50.104622, 14.485431], [50.104635, 14.484685], [50.104701, 14.483706], [50.104978, 14.479963], [50.105005, 14.479485], [50.10501, 14.478908], [50.104969, 14.478204], [50.104906, 14.477757], [50.104733, 14.476917], [50.10456, 14.476352], [50.10422, 14.475392], [50.103767, 14.474185], [50.103302, 14.472972], [50.102966, 14.472259], [50.102723, 14.471829], [50.102373, 14.471355], [50.10202, 14.470899], [50.100911, 14.469632], [50.099312, 14.467824], [50.098883, 14.467299], [50.09835, 14.466591], [50.098084, 14.466144], [50.0977, 14.465327], [50.097414, 14.464652], [50.096548, 14.462518], [50.095677, 14.460375], [50.094997, 14.458691], [50.094249, 14.456853], [50.093415, 14.454766], [50.093124, 14.453742], [50.092587, 14.451481], [50.092223, 14.449937], [50.091828, 14.448262], [50.091151, 14.445373], [50.090958, 14.444527], [50.090666, 14.442862], [50.09062, 14.44163], [50.090593, 14.440492], [50.090564, 14.43924], [50.090494, 14.437657], [50.090466, 14.43694], [50.090436, 14.436095], [50.090377, 14.435547], [50.090247, 14.434833], [50.090121, 14.434337], [50.08939, 14.432211], [50.08881, 14.430594], [50.088272, 14.429052], [50.088081, 14.42859], [50.087598, 14.427807], [50.08735, 14.427507], [50.086932, 14.427117], [50.086647, 14.426908], [50.086159, 14.426651], [50.085632, 14.426358], [50.085218, 14.426103], [50.084787, 14.425749], [50.084618, 14.425561], [50.084322, 14.425184], [50.0841, 14.424791], [50.083676, 14.423907], [50.083392, 14.423307], [50.082895, 14.422303], [50.082671, 14.421876], [50.082399, 14.421488], [50.081886, 14.420962], [50.081321, 14.420582], [50.080939, 14.42042], [50.080504, 14.420329], [50.079949, 14.420297], [50.078401, 14.42025], [50.077681, 14.420177], [50.07725, 14.420033], [50.076758, 14.419791], [50.076186, 14.419361], [50.075879, 14.419041], [50.075228, 14.418132], [50.074591, 14.416965], [50.073914, 14.415677], [50.073757, 14.415326], [50.073545, 14.414706], [50.073381, 14.413964], [50.073318, 14.413392], [50.073291, 14.412748], [50.073331, 14.411972], [50.073571, 14.40954], [50.073591, 14.408945], [50.073582, 14.40838], [50.073437, 14.407307], [50.073218, 14.406502], [50.072861, 14.405719], [50.07257, 14.405264], [50.072284, 14.404912], [50.071962, 14.40461], [50.071635, 14.404364], [50.071055, 14.404079], [50.070015, 14.403816], [50.068813, 14.403549], [50.068417, 14.403493], [50.068099, 14.403495], [50.067707, 14.403551], [50.066825, 14.403948], [50.066204, 14.40449], [50.065554, 14.40537], [50.065144, 14.406147], [50.064623, 14.407108], [50.064177, 14.407771], [50.063906, 14.408078], [50.063381, 14.40852], [50.062729, 14.408877], [50.062291, 14.408986], [50.061275, 14.409117], [50.060309, 14.409237], [50.059701, 14.409315], [50.059359, 14.409359], [50.05884, 14.409442], [50.058537, 14.409438], [50.057807, 14.409274], [50.057541, 14.409145], [50.05709, 14.408798], [50.056538, 14.408199], [50.056191, 14.407663], [50.055868, 14.406918], [50.055605, 14.406003], [50.055401, 14.404616], [50.055142, 14.402132], [50.054747, 14.398547], [50.054701, 14.397808], [50.054713, 14.397196], [50.054756, 14.396631], [50.054884, 14.395883], [50.055087, 14.395105], [50.055508, 14.394113], [50.056631, 14.39233], [50.057025, 14.391668], [50.057202, 14.391307], [50.057381, 14.390881], [50.05755, 14.390395], [50.057743, 14.389561], [50.058106, 14.387816], [50.05844, 14.38608], [50.05852, 14.385283], [50.05854, 14.384648], [50.058516, 14.384048], [50.058432, 14.383318], [50.0583, 14.38263], [50.05811, 14.381956], [50.057937, 14.381489], [50.057087, 14.379485], [50.056655, 14.378354], [50.056213, 14.377065], [50.055836, 14.375746], [50.055062, 14.372938], [50.054228, 14.369912], [50.053739, 14.368199], [50.053515, 14.367456], [50.053209, 14.366659], [50.052372, 14.364703], [50.052053, 14.363859], [50.051873, 14.36313], [50.051776, 14.362517], [50.051523, 14.359768], [50.051242, 14.35661], [50.050971, 14.353532], [50.050851, 14.352173], [50.05075, 14.351038], [50.05064, 14.349804], [50.050518, 14.348442], [50.050337, 14.346403], [50.050023, 14.342856], [50.049904, 14.341489], [50.049866, 14.341182], [50.049737, 14.340401], [50.049563, 14.339696], [50.049422, 14.339257], [50.049293, 14.338907], [50.049103, 14.338509], [50.048858, 14.338114], [50.048619, 14.337802], [50.048347, 14.337532], [50.046754, 14.336204], [50.046024, 14.335554], [50.04574, 14.335204], [50.045555, 14.33494], [50.045236, 14.334339], [50.045009, 14.333727], [50.044795, 14.332956], [50.044669, 14.332222], [50.044594, 14.331506], [50.044503, 14.330451], [50.044234, 14.327405], [50.044176, 14.326471], [50.044195, 14.325899], [50.044295, 14.325019], [50.044471, 14.324179], [50.044749, 14.323332], [50.044983, 14.322773], [50.045684, 14.321341], [50.046803, 14.31899], [50.047169, 14.317958], [50.047292, 14.317438], [50.047387, 14.316896], [50.047442, 14.316409], [50.04747, 14.315975], [50.047476, 14.31552], [50.047464, 14.315094], [50.047246, 14.312623], [50.047049, 14.310408], [50.046851, 14.308171], [50.046683, 14.306279], [50.046542, 14.304711], [50.046398, 14.303065], [50.046351, 14.30223], [50.046383, 14.301331], [50.046499, 14.300505], [50.046856, 14.29907], [50.047309, 14.297853], [50.047877, 14.29678], [50.048321, 14.296116], [50.049373, 14.294938], [50.050835, 14.293512], [50.052133, 14.292246], [50.053255, 14.291152]]],
|
||
"metro_C": [[[50.03082, 14.527248], [50.030473, 14.52428], [50.030389, 14.523749], [50.029983, 14.521623], [50.029474, 14.518988], [50.028937, 14.516188], [50.028475, 14.513812], [50.028285, 14.51266], [50.028137, 14.511431], [50.027893, 14.509216], [50.027708, 14.507623], [50.027525, 14.50599], [50.027472, 14.505307], [50.027452, 14.504529], [50.027465, 14.504045], [50.027513, 14.503375], [50.027581, 14.502864], [50.027696, 14.502249], [50.027787, 14.501847], [50.027989, 14.501123], [50.028888, 14.498242], [50.029613, 14.49592], [50.030214, 14.49404], [50.030413, 14.493543], [50.030845, 14.492636], [50.031651, 14.491027], [50.032271, 14.489786], [50.03296, 14.488407], [50.033731, 14.486868], [50.034704, 14.484924], [50.034983, 14.484361], [50.035453, 14.483388], [50.035668, 14.482842], [50.03613, 14.481458], [50.036894, 14.479096], [50.037201, 14.47816], [50.037686, 14.476716], [50.0385, 14.474198], [50.039718, 14.47047], [50.040695, 14.467458], [50.040958, 14.46642], [50.041031, 14.465919], [50.041182, 14.464039], [50.041238, 14.463428], [50.041313, 14.462809], [50.041404, 14.462174], [50.041502, 14.461513], [50.041609, 14.46081], [50.041704, 14.460191], [50.04185, 14.45925], [50.042149, 14.457255], [50.042585, 14.454404], [50.042765, 14.453282], [50.042911, 14.452339], [50.043056, 14.451584], [50.043152, 14.451231], [50.04333, 14.450711], [50.043479, 14.450372], [50.043735, 14.449877], [50.04442, 14.448767], [50.045346, 14.44727], [50.046149, 14.446068], [50.046383, 14.445717], [50.047125, 14.444497], [50.048281, 14.442603], [50.048856, 14.441695], [50.049287, 14.441147], [50.049782, 14.440652], [50.0506, 14.440006], [50.051061, 14.439644], [50.051891, 14.439032], [50.052663, 14.438447], [50.05312, 14.43806], [50.053833, 14.437323], [50.054444, 14.436668], [50.055229, 14.435789], [50.055709, 14.435099], [50.056027, 14.434611], [50.056815, 14.43338], [50.057232, 14.432679], [50.057631, 14.43207], [50.057931, 14.431611], [50.058272, 14.431144], [50.058635, 14.430759], [50.059043, 14.43045], [50.059484, 14.430222], [50.059854, 14.43012], [50.060245, 14.430089], [50.060569, 14.430113], [50.061339, 14.430317], [50.061788, 14.430447], [50.062118, 14.430512], [50.062491, 14.430536], [50.063182, 14.430519], [50.065312, 14.430437], [50.069098, 14.430292], [50.069714, 14.430289], [50.070289, 14.430338], [50.071359, 14.43044], [50.072054, 14.430494], [50.072557, 14.430498], [50.072999, 14.43048], [50.073463, 14.43042], [50.074333, 14.430308], [50.075329, 14.430176], [50.075732, 14.430083], [50.07619, 14.42996], [50.0766, 14.42981], [50.077172, 14.429598], [50.077384, 14.42954], [50.077637, 14.429497], [50.077973, 14.429498], [50.078158, 14.429527], [50.078587, 14.42965], [50.078987, 14.429858], [50.079247, 14.430036], [50.079388, 14.430155], [50.08021, 14.431049], [50.080381, 14.431248], [50.081082, 14.432057], [50.081608, 14.432607], [50.082353, 14.433269], [50.083007, 14.433766], [50.083517, 14.434134], [50.084413, 14.434813], [50.084701, 14.435085], [50.085061, 14.43551], [50.085686, 14.436365], [50.086113, 14.436913], [50.086569, 14.437359], [50.086993, 14.437658], [50.087848, 14.438093], [50.088776, 14.438545], [50.089081, 14.4387], [50.089577, 14.438938], [50.090059, 14.439178], [50.091242, 14.439768], [50.092361, 14.440327], [50.092772, 14.440545], [50.093109, 14.440703], [50.093775, 14.440863], [50.094175, 14.44088], [50.094646, 14.440803], [50.095136, 14.44064], [50.09579, 14.440248], [50.09635, 14.439853], [50.09738, 14.439137], [50.097796, 14.438866], [50.098279, 14.438657], [50.098598, 14.438563], [50.09926, 14.438506], [50.100208, 14.438488], [50.100746, 14.438481], [50.101316, 14.438487], [50.10155, 14.438523], [50.101934, 14.438628], [50.102204, 14.438742], [50.102559, 14.438937], [50.102818, 14.439129], [50.103294, 14.439577], [50.103691, 14.439986], [50.104508, 14.440818], [50.104897, 14.441131], [50.10528, 14.441337], [50.105755, 14.441506], [50.106184, 14.441572], [50.106665, 14.441547], [50.10711, 14.441439], [50.107555, 14.441207], [50.107955, 14.440949], [50.108353, 14.440661], [50.109002, 14.440075], [50.109673, 14.439477], [50.110122, 14.439072], [50.110383, 14.438825], [50.110942, 14.438267], [50.11161, 14.43752], [50.112295, 14.436793], [50.112726, 14.436402], [50.113305, 14.436007], [50.113838, 14.435742], [50.114853, 14.43536], [50.115582, 14.435133], [50.11604, 14.435046], [50.116652, 14.434999], [50.117154, 14.435037], [50.117612, 14.435115], [50.118033, 14.435232], [50.11842, 14.435387], [50.118767, 14.435561], [50.119491, 14.436034], [50.119999, 14.436467], [50.120381, 14.436852], [50.120863, 14.437452], [50.121433, 14.43832], [50.121805, 14.439027], [50.122133, 14.439776], [50.122457, 14.440709], [50.122715, 14.441688], [50.122869, 14.442467], [50.122957, 14.443051], [50.122993, 14.443385], [50.123057, 14.444146], [50.123078, 14.444672], [50.123128, 14.448675], [50.123168, 14.449487], [50.123239, 14.450239], [50.123309, 14.450722], [50.123407, 14.451278], [50.12355, 14.451912], [50.123767, 14.452787], [50.124131, 14.454229], [50.124568, 14.455848], [50.124807, 14.456811], [50.125375, 14.458823], [50.125703, 14.459963], [50.125895, 14.460759], [50.126025, 14.461447], [50.126128, 14.462182], [50.126187, 14.462757], [50.126273, 14.464023], [50.126385, 14.465644], [50.126488, 14.467262], [50.126564, 14.468668], [50.126589, 14.469005], [50.126628, 14.469423], [50.126692, 14.470545], [50.126742, 14.471341], [50.126791, 14.4721], [50.126839, 14.472796], [50.126919, 14.473335], [50.127328, 14.475125], [50.127872, 14.477325], [50.128416, 14.479446], [50.128694, 14.480585], [50.12879, 14.481158], [50.128883, 14.48199], [50.128903, 14.482738], [50.128882, 14.483367], [50.128817, 14.484088], [50.128711, 14.484712], [50.128594, 14.485228], [50.128395, 14.485921], [50.128161, 14.486543], [50.127917, 14.487068], [50.127715, 14.487438], [50.126958, 14.488512], [50.126171, 14.489497], [50.125795, 14.490032], [50.124963, 14.491058], [50.123753, 14.492465], [50.123023, 14.493399], [50.121608, 14.495271], [50.120827, 14.49642], [50.120296, 14.497212], [50.120029, 14.497582], [50.119275, 14.498563], [50.118567, 14.499481], [50.118009, 14.500257], [50.117575, 14.50105], [50.117266, 14.501815], [50.117096, 14.502335], [50.117011, 14.50265], [50.116922, 14.503035], [50.116812, 14.503617], [50.116751, 14.504098], [50.116701, 14.504813], [50.116696, 14.505522], [50.116727, 14.506067], [50.116831, 14.506966], [50.11696, 14.50762], [50.117223, 14.508548], [50.118186, 14.51076], [50.118913, 14.512376], [50.119367, 14.513294], [50.119689, 14.513837], [50.120009, 14.514282], [50.12043, 14.514773], [50.120828, 14.515154], [50.12119, 14.515442], [50.121704, 14.515739], [50.12211, 14.515913], [50.122462, 14.516021], [50.122951, 14.516095], [50.124146, 14.516175]], [[50.124158, 14.516175], [50.123363, 14.516129], [50.122565, 14.516044], [50.122202, 14.515948], [50.121775, 14.515774], [50.121267, 14.515491], [50.12097, 14.515274], [50.120543, 14.514887], [50.12016, 14.514471], [50.119787, 14.513985], [50.119456, 14.51345], [50.11916, 14.5129], [50.118437, 14.511322], [50.117319, 14.508791], [50.117013, 14.507842], [50.116873, 14.50722], [50.116755, 14.506388], [50.116702, 14.505699], [50.11669, 14.505085], [50.116736, 14.504291], [50.116791, 14.503754], [50.116885, 14.503218], [50.116981, 14.502765], [50.117068, 14.502441], [50.117192, 14.50203], [50.117513, 14.501186], [50.117875, 14.500484], [50.11852, 14.499542], [50.119207, 14.49865], [50.119873, 14.497792], [50.120174, 14.497375], [50.120717, 14.496589], [50.121256, 14.495768], [50.122527, 14.494054], [50.123461, 14.492839], [50.124671, 14.49138], [50.125482, 14.490419], [50.126155, 14.489518], [50.12693, 14.488548], [50.127421, 14.487887], [50.127861, 14.487184], [50.128094, 14.486693], [50.128313, 14.486156], [50.128541, 14.485439], [50.128676, 14.484869], [50.128791, 14.484284], [50.128861, 14.48364], [50.128901, 14.482947], [50.128895, 14.482262], [50.128843, 14.481546], [50.128735, 14.480809], [50.128577, 14.480076], [50.128002, 14.47783], [50.127414, 14.47549], [50.126972, 14.473608], [50.126859, 14.472967], [50.1268, 14.472276], [50.126743, 14.471362], [50.126708, 14.470796], [50.126637, 14.469565], [50.126603, 14.469145], [50.12657, 14.468788], [50.126521, 14.467872], [50.126413, 14.466054], [50.126296, 14.464392], [50.126203, 14.46297], [50.126169, 14.462539], [50.126054, 14.461643], [50.125961, 14.461081], [50.125765, 14.460201], [50.125477, 14.459169], [50.124932, 14.457269], [50.124647, 14.456175], [50.124138, 14.454255], [50.123804, 14.452935], [50.12363, 14.452237], [50.123448, 14.451481], [50.123331, 14.450864], [50.12326, 14.450389], [50.1232, 14.449877], [50.123138, 14.448958], [50.1231, 14.446802], [50.123067, 14.444309], [50.12301, 14.443556], [50.122966, 14.443129], [50.122892, 14.442607], [50.122764, 14.441917], [50.122568, 14.441109], [50.122247, 14.440082], [50.121917, 14.439267], [50.121583, 14.438588], [50.121018, 14.437676], [50.120505, 14.436993], [50.120135, 14.436598], [50.119666, 14.436172], [50.118881, 14.435626], [50.118523, 14.435436], [50.118163, 14.43528], [50.11776, 14.43515], [50.117334, 14.435057], [50.116762, 14.435003], [50.116299, 14.435018], [50.115702, 14.435107], [50.11513, 14.435266], [50.114036, 14.43566], [50.113572, 14.435869], [50.112934, 14.436255], [50.112443, 14.436656], [50.111798, 14.437316], [50.110975, 14.438232], [50.11048, 14.438729], [50.110245, 14.438954], [50.109726, 14.439429], [50.109029, 14.440051], [50.108502, 14.440526], [50.108124, 14.440836], [50.107741, 14.441084], [50.107246, 14.441385], [50.106828, 14.441518], [50.106363, 14.441579], [50.105909, 14.441539], [50.105451, 14.441409], [50.105051, 14.441227], [50.104651, 14.44094], [50.104033, 14.440343], [50.103552, 14.439843], [50.102934, 14.439224], [50.1026, 14.438964], [50.10235, 14.438815], [50.101992, 14.438648], [50.101644, 14.438542], [50.101403, 14.438498], [50.1011, 14.438481], [50.100224, 14.438487], [50.099291, 14.438505], [50.098742, 14.438534], [50.098368, 14.438623], [50.097953, 14.438789], [50.097528, 14.439031], [50.097239, 14.43924], [50.09606, 14.440054], [50.095309, 14.440551], [50.094808, 14.440761], [50.094309, 14.440866], [50.09391, 14.440876], [50.093193, 14.440735], [50.09291, 14.440618], [50.092468, 14.440384], [50.091361, 14.439836], [50.09074, 14.43951], [50.090031, 14.439165], [50.089304, 14.438807], [50.088844, 14.438579], [50.088176, 14.438257], [50.087507, 14.437919], [50.086721, 14.437477], [50.086315, 14.437136], [50.085856, 14.436599], [50.085245, 14.435754], [50.084873, 14.435273], [50.084477, 14.434873], [50.084108, 14.434567], [50.08348, 14.434107], [50.082684, 14.433531], [50.081829, 14.432822], [50.081318, 14.432327], [50.08088, 14.431834], [50.080274, 14.431124], [50.079587, 14.430335], [50.07927, 14.430054], [50.079134, 14.429959], [50.078726, 14.429713], [50.078327, 14.429565], [50.078049, 14.429507], [50.077741, 14.429489], [50.07745, 14.429528], [50.077292, 14.429561], [50.076736, 14.429755], [50.076357, 14.429899], [50.075882, 14.430048], [50.075403, 14.430163], [50.074349, 14.430306], [50.073796, 14.430373], [50.073211, 14.430456], [50.072727, 14.430493], [50.072164, 14.430497], [50.071582, 14.430461], [50.070617, 14.430378], [50.069858, 14.430301], [50.069321, 14.430288], [50.066717, 14.430383], [50.06409, 14.430484], [50.062631, 14.430531], [50.062235, 14.430526], [50.061953, 14.430484], [50.061616, 14.430397], [50.060688, 14.430136], [50.060348, 14.43009], [50.059984, 14.4301], [50.059619, 14.430178], [50.059195, 14.430355], [50.058757, 14.430654], [50.058391, 14.431006], [50.058068, 14.431417], [50.057716, 14.431941], [50.057302, 14.432566], [50.056839, 14.43334], [50.056317, 14.434179], [50.055873, 14.434847], [50.05544, 14.43551], [50.054552, 14.436553], [50.053878, 14.437273], [50.053329, 14.437856], [50.052782, 14.438348], [50.052321, 14.43871], [50.051094, 14.43962], [50.050954, 14.439728], [50.050147, 14.440369], [50.049448, 14.440977], [50.048988, 14.441512], [50.048586, 14.442111], [50.047566, 14.443774], [50.046519, 14.445494], [50.046241, 14.445934], [50.045645, 14.446811], [50.044434, 14.448744], [50.043946, 14.449519], [50.043628, 14.450078], [50.043395, 14.450552], [50.043194, 14.451096], [50.043086, 14.45146], [50.042977, 14.451953], [50.042844, 14.452761], [50.04262, 14.454191], [50.042343, 14.455966], [50.041993, 14.458249], [50.04184, 14.459319], [50.041617, 14.460755], [50.041508, 14.461478], [50.041434, 14.46198], [50.04132, 14.462758], [50.041247, 14.463336], [50.041203, 14.463807], [50.041052, 14.465744], [50.040986, 14.466253], [50.040791, 14.467118], [50.040358, 14.468502], [50.038613, 14.473852], [50.037912, 14.475995], [50.037667, 14.476775], [50.036931, 14.478984], [50.036275, 14.481006], [50.035724, 14.48268], [50.035566, 14.48312], [50.035275, 14.483764], [50.034757, 14.484816], [50.034029, 14.486275], [50.033196, 14.487933], [50.03246, 14.489412], [50.031671, 14.490987], [50.030871, 14.492585], [50.030491, 14.493365], [50.030238, 14.493975], [50.029934, 14.494898], [50.029144, 14.497425], [50.028135, 14.500658], [50.027822, 14.501719], [50.027724, 14.502111], [50.027635, 14.502554], [50.027531, 14.50321], [50.027474, 14.503879], [50.027452, 14.504374], [50.02746, 14.505017], [50.027513, 14.505865], [50.027628, 14.506933], [50.02789, 14.509189], [50.028126, 14.511323], [50.028254, 14.512424], [50.028402, 14.513411], [50.028905, 14.516016], [50.029288, 14.518028], [50.029775, 14.520551], [50.030383, 14.523718], [50.030455, 14.524137], [50.030626, 14.525571]]],
|
||
"tram_13": [[[50.10809, 14.528281], [50.108778, 14.528171], [50.109008, 14.52814], [50.109293, 14.528128], [50.109311, 14.528127], [50.109808, 14.528127], [50.109854, 14.528123], [50.109919, 14.528118], [50.109943, 14.528111], [50.109992, 14.528085], [50.110035, 14.52805], [50.110074, 14.528007], [50.110105, 14.527953], [50.110124, 14.527906], [50.110139, 14.527856], [50.110156, 14.527769], [50.110168, 14.527619], [50.110262, 14.525925], [50.110557, 14.518773], [50.11058, 14.518291], [50.110594, 14.51778], [50.1106, 14.517322], [50.110598, 14.516114], [50.110597, 14.515657], [50.110591, 14.511537], [50.110594, 14.509474], [50.110595, 14.509072], [50.110596, 14.508305], [50.110602, 14.507938], [50.11062, 14.507534], [50.110642, 14.507122], [50.110661, 14.50689], [50.110701, 14.506597], [50.110898, 14.505628], [50.110938, 14.505419], [50.111087, 14.504621], [50.111206, 14.503991], [50.111236, 14.503828], [50.11126, 14.503652], [50.111267, 14.503474], [50.111245, 14.502559], [50.111232, 14.502426], [50.111214, 14.502321], [50.111164, 14.502151], [50.111011, 14.501802], [50.110929, 14.501615], [50.110858, 14.501431], [50.110792, 14.501227], [50.110746, 14.501054], [50.110259, 14.499015], [50.110217, 14.498839], [50.110205, 14.49879], [50.1101, 14.498411], [50.109708, 14.497226], [50.109359, 14.496103], [50.109246, 14.495762], [50.108938, 14.494876], [50.108895, 14.494751], [50.106762, 14.488609], [50.106577, 14.488076], [50.106286, 14.487239], [50.105544, 14.485121], [50.105311, 14.48447], [50.105122, 14.483994], [50.105006, 14.483682], [50.104875, 14.4833], [50.104717, 14.482818], [50.104698, 14.482759], [50.104674, 14.482684], [50.10456, 14.482343], [50.104424, 14.48196], [50.10439, 14.481861], [50.103727, 14.479978], [50.103704, 14.47989], [50.103695, 14.479822], [50.103694, 14.479761], [50.103705, 14.479684], [50.103719, 14.479625], [50.103741, 14.479571], [50.103776, 14.479512], [50.103818, 14.479465], [50.103837, 14.479446], [50.103973, 14.479336], [50.104535, 14.478884], [50.10486, 14.478653], [50.104903, 14.478601], [50.104941, 14.478526], [50.104968, 14.478425], [50.104976, 14.478321], [50.10497, 14.478252], [50.104953, 14.478174], [50.104438, 14.476371], [50.10428, 14.475847], [50.104224, 14.47567], [50.104103, 14.475279], [50.103941, 14.474764], [50.103876, 14.474557], [50.103699, 14.473992], [50.103674, 14.473922], [50.103607, 14.473738], [50.103538, 14.47359], [50.103477, 14.473492], [50.103409, 14.473411], [50.103365, 14.473374], [50.103315, 14.47335], [50.10326, 14.473341], [50.103231, 14.473341], [50.103135, 14.473348], [50.102481, 14.473435], [50.102283, 14.473461], [50.101941, 14.473514], [50.101788, 14.473536], [50.10174, 14.473531], [50.101559, 14.47349], [50.101362, 14.473455], [50.101306, 14.47344], [50.101212, 14.473391], [50.100818, 14.47311], [50.100728, 14.47307], [50.100643, 14.473053], [50.100545, 14.47306], [50.100444, 14.473091], [50.100249, 14.473165], [50.100159, 14.473187], [50.100055, 14.473197], [50.09969, 14.473169], [50.099521, 14.473175], [50.099408, 14.473185], [50.099303, 14.473207], [50.099118, 14.473264], [50.098996, 14.473316], [50.098854, 14.473389], [50.098756, 14.473449], [50.098584, 14.473576], [50.098497, 14.473651], [50.098376, 14.47377], [50.097976, 14.474203], [50.097782, 14.4744], [50.097662, 14.474508], [50.097545, 14.474604], [50.097461, 14.474669], [50.097308, 14.474777], [50.097132, 14.474884], [50.096975, 14.474967], [50.096606, 14.475153], [50.096405, 14.475248], [50.096307, 14.475287], [50.096206, 14.475319], [50.096058, 14.475351], [50.095964, 14.47536], [50.095947, 14.47536], [50.095929, 14.47536], [50.095911, 14.47536], [50.095893, 14.47536], [50.095779, 14.475356], [50.09565, 14.475335], [50.09547, 14.475287], [50.095376, 14.475247], [50.095296, 14.475193], [50.095235, 14.475134], [50.095161, 14.475038], [50.095106, 14.474942], [50.095084, 14.474905], [50.09472, 14.474251], [50.094534, 14.473917], [50.094367, 14.473601], [50.094254, 14.473357], [50.093861, 14.472461], [50.092541, 14.469435], [50.092449, 14.469241], [50.092377, 14.469118], [50.092313, 14.469023], [50.092226, 14.468911], [50.092152, 14.468835], [50.092073, 14.468765], [50.091974, 14.468689], [50.091826, 14.46859], [50.091562, 14.468435], [50.09071, 14.467907], [50.090622, 14.467864], [50.09057, 14.467851], [50.090531, 14.46785], [50.090467, 14.467861], [50.090365, 14.467905], [50.090085, 14.468045], [50.090033, 14.468071], [50.08997, 14.468106], [50.089129, 14.468549], [50.089071, 14.468579], [50.088565, 14.468838], [50.087283, 14.469495], [50.086617, 14.469828], [50.08561, 14.470228], [50.08499, 14.470473], [50.084652, 14.470607], [50.084576, 14.470637], [50.084165, 14.470801], [50.08411, 14.470824], [50.082585, 14.471434], [50.081697, 14.471779], [50.081675, 14.471787], [50.079703, 14.472566], [50.079293, 14.472728], [50.078757, 14.472934], [50.078632, 14.472965], [50.078599, 14.47296], [50.078549, 14.472935], [50.078508, 14.472898], [50.078474, 14.47285], [50.07845, 14.472786], [50.078429, 14.472702], [50.078418, 14.472616], [50.078415, 14.472572], [50.078363, 14.471609], [50.078349, 14.471337], [50.078315, 14.470652], [50.078186, 14.468057], [50.078158, 14.467501], [50.07815, 14.467346], [50.078106, 14.466458], [50.078099, 14.466318], [50.078087, 14.466062], [50.07807, 14.465742], [50.077948, 14.463438], [50.077927, 14.462501], [50.077924, 14.462433], [50.077879, 14.461518], [50.077871, 14.461352], [50.077845, 14.460938], [50.0778, 14.460572], [50.077785, 14.460394], [50.07764, 14.457683], [50.077618, 14.457281], [50.077607, 14.457067], [50.077507, 14.45586], [50.07742, 14.454301], [50.077327, 14.45229], [50.077232, 14.450472], [50.077155, 14.449011], [50.077144, 14.448686], [50.077066, 14.446263], [50.076985, 14.444004], [50.076982, 14.443744], [50.076995, 14.442731], [50.076995, 14.442667], [50.077031, 14.442077], [50.077046, 14.441926], [50.077114, 14.441374], [50.077209, 14.440734], [50.077435, 14.439389], [50.077706, 14.437823], [50.077875, 14.437034], [50.077994, 14.436508], [50.078055, 14.436238], [50.078354, 14.435594], [50.07847, 14.435345], [50.078578, 14.435072], [50.078812, 14.434227], [50.078832, 14.434154], [50.078917, 14.433836]], [[50.078812, 14.434227], [50.078578, 14.435072], [50.07847, 14.435345], [50.078354, 14.435594], [50.078055, 14.436238], [50.077994, 14.436508], [50.077875, 14.437034], [50.077706, 14.437823], [50.077435, 14.439389], [50.077209, 14.440734], [50.077114, 14.441374], [50.077046, 14.441926], [50.077031, 14.442077], [50.076995, 14.442667], [50.076995, 14.442731], [50.076982, 14.443744], [50.076985, 14.444004], [50.077066, 14.446263], [50.077144, 14.448686], [50.077155, 14.449011], [50.077232, 14.450472], [50.077327, 14.45229], [50.07742, 14.454301], [50.077507, 14.45586], [50.077607, 14.457067], [50.077618, 14.457281], [50.07764, 14.457683], [50.077785, 14.460394], [50.0778, 14.460572], [50.077845, 14.460938], [50.077871, 14.461352], [50.077879, 14.461518], [50.077924, 14.462433], [50.077927, 14.462501], [50.077948, 14.463438], [50.07807, 14.465742], [50.078087, 14.466062], [50.078099, 14.466318], [50.078106, 14.466458], [50.07815, 14.467346], [50.078158, 14.467501], [50.078186, 14.468057], [50.078315, 14.470652], [50.078349, 14.471337], [50.078363, 14.471609], [50.078415, 14.472572], [50.078418, 14.472616], [50.078429, 14.472702], [50.07845, 14.472786], [50.078474, 14.47285], [50.078508, 14.472898], [50.078549, 14.472935], [50.078599, 14.47296], [50.078632, 14.472965], [50.078757, 14.472934], [50.079293, 14.472728], [50.079703, 14.472566], [50.081675, 14.471787], [50.081697, 14.471779], [50.082585, 14.471434], [50.08411, 14.470824], [50.084165, 14.470801], [50.084576, 14.470637], [50.084652, 14.470607], [50.08499, 14.470473], [50.08561, 14.470228], [50.086617, 14.469828], [50.087283, 14.469495], [50.088565, 14.468838], [50.089071, 14.468579], [50.089129, 14.468549], [50.08997, 14.468106], [50.090033, 14.468071], [50.090085, 14.468045], [50.090365, 14.467905], [50.090467, 14.467861], [50.090531, 14.46785], [50.09057, 14.467851], [50.090622, 14.467864], [50.09071, 14.467907], [50.091562, 14.468435], [50.091826, 14.46859], [50.091974, 14.468689], [50.092073, 14.468765], [50.092152, 14.468835], [50.092226, 14.468911], [50.092313, 14.469023], [50.092377, 14.469118], [50.092449, 14.469241], [50.092541, 14.469435], [50.093861, 14.472461], [50.094254, 14.473357], [50.094367, 14.473601], [50.094534, 14.473917], [50.09472, 14.474251], [50.095084, 14.474905], [50.095106, 14.474942], [50.095161, 14.475038], [50.095235, 14.475134], [50.095296, 14.475193], [50.095376, 14.475247], [50.09547, 14.475287], [50.09565, 14.475335], [50.095779, 14.475356], [50.095884, 14.47536], [50.095902, 14.47536], [50.09592, 14.47536], [50.095938, 14.47536], [50.095956, 14.47536], [50.096058, 14.475351], [50.096206, 14.475319], [50.096307, 14.475287], [50.096405, 14.475248], [50.096606, 14.475153], [50.096975, 14.474967], [50.097132, 14.474884], [50.097308, 14.474777], [50.097461, 14.474669], [50.097545, 14.474604], [50.097662, 14.474508], [50.097782, 14.4744], [50.097976, 14.474203], [50.098376, 14.47377], [50.098497, 14.473651], [50.098584, 14.473576], [50.098756, 14.473449], [50.098854, 14.473389], [50.098996, 14.473316], [50.099118, 14.473264], [50.099303, 14.473207], [50.099408, 14.473185], [50.099521, 14.473175], [50.09969, 14.473169], [50.100055, 14.473197], [50.100159, 14.473187], [50.100249, 14.473165], [50.100444, 14.473091], [50.100545, 14.47306], [50.100643, 14.473053], [50.100728, 14.47307], [50.100818, 14.47311], [50.101212, 14.473391], [50.101306, 14.47344], [50.101362, 14.473455], [50.101559, 14.47349], [50.10174, 14.473531], [50.101788, 14.473536], [50.101941, 14.473514], [50.102283, 14.473461], [50.102481, 14.473435], [50.103135, 14.473348], [50.103231, 14.473341], [50.10326, 14.473341], [50.103315, 14.47335], [50.103365, 14.473374], [50.103409, 14.473411], [50.103477, 14.473492], [50.103538, 14.47359], [50.103607, 14.473738], [50.103674, 14.473922], [50.103699, 14.473992], [50.103876, 14.474557], [50.103941, 14.474764], [50.104103, 14.475279], [50.104224, 14.47567], [50.10428, 14.475847], [50.104438, 14.476371], [50.104953, 14.478174], [50.10497, 14.478252], [50.104976, 14.478321], [50.104968, 14.478425], [50.104941, 14.478526], [50.104903, 14.478601], [50.10486, 14.478653], [50.104535, 14.478884], [50.103973, 14.479336], [50.103837, 14.479446], [50.103818, 14.479465], [50.103776, 14.479512], [50.103741, 14.479571], [50.103719, 14.479625], [50.103705, 14.479684], [50.103694, 14.479761], [50.103695, 14.479822], [50.103704, 14.47989], [50.103727, 14.479978], [50.10439, 14.481861], [50.104424, 14.48196], [50.10456, 14.482343], [50.104674, 14.482684], [50.104698, 14.482759], [50.104717, 14.482818], [50.104875, 14.4833], [50.105006, 14.483682], [50.105122, 14.483994], [50.105311, 14.48447], [50.105544, 14.485121], [50.106286, 14.487239], [50.106577, 14.488076], [50.106762, 14.488609], [50.108895, 14.494751], [50.108938, 14.494876], [50.109246, 14.495762], [50.109359, 14.496103], [50.109708, 14.497226], [50.1101, 14.498411], [50.110205, 14.49879], [50.110217, 14.498839], [50.110259, 14.499015], [50.110746, 14.501054], [50.110792, 14.501227], [50.110858, 14.501431], [50.110929, 14.501615], [50.111011, 14.501802], [50.111164, 14.502151], [50.111214, 14.502321], [50.111232, 14.502426], [50.111245, 14.502559], [50.111267, 14.503474], [50.11126, 14.503652], [50.111236, 14.503828], [50.111206, 14.503991], [50.111087, 14.504621], [50.110938, 14.505419], [50.110898, 14.505628], [50.110701, 14.506597], [50.110661, 14.50689], [50.110642, 14.507122], [50.11062, 14.507534], [50.110602, 14.507938], [50.110596, 14.508305], [50.110595, 14.509072], [50.110594, 14.509474], [50.110591, 14.511537], [50.110597, 14.515657], [50.110598, 14.516114], [50.1106, 14.517322], [50.110594, 14.51778], [50.11058, 14.518291], [50.110557, 14.518773], [50.110262, 14.525925], [50.110168, 14.527619], [50.110156, 14.527769], [50.110139, 14.527856], [50.110124, 14.527906], [50.110105, 14.527953], [50.110074, 14.528007], [50.110035, 14.52805], [50.109992, 14.528085], [50.109943, 14.528111], [50.109919, 14.528118], [50.109854, 14.528123], [50.109808, 14.528127], [50.109311, 14.528127], [50.109293, 14.528128], [50.109008, 14.52814], [50.108778, 14.528171], [50.10809, 14.528281], [50.107516, 14.528373], [50.107478, 14.528378]]],
|
||
"tram_17": [[[50.008666, 14.455793], [50.008539, 14.455824], [50.007901, 14.455888], [50.007188, 14.455884], [50.00616, 14.455749], [50.006026, 14.455674], [50.005938, 14.45553], [50.005902, 14.455306], [50.005974, 14.45367], [50.00623, 14.448682], [50.006423, 14.447308], [50.00662, 14.446072], [50.006722, 14.444795], [50.006698, 14.443648], [50.006554, 14.442456], [50.006023, 14.440161], [50.005789, 14.439217], [50.005421, 14.438057], [50.005129, 14.43647], [50.005021, 14.434304], [50.005073, 14.433421], [50.005228, 14.43222], [50.005424, 14.431542], [50.006363, 14.429056], [50.006507, 14.428624], [50.006594, 14.42815], [50.006606, 14.427444], [50.006526, 14.426743], [50.005746, 14.423854], [50.005254, 14.422072], [50.005132, 14.421357], [50.005008, 14.420189], [50.004827, 14.419562], [50.004199, 14.417786], [50.003127, 14.415473], [50.002791, 14.414576], [50.002528, 14.413607], [50.002321, 14.412306], [50.002205, 14.409742], [50.002071, 14.405426], [50.002142, 14.404916], [50.002296, 14.404498], [50.002551, 14.404167], [50.003467, 14.403654], [50.004602, 14.403234], [50.006074, 14.402735], [50.006556, 14.402744], [50.007343, 14.403098], [50.007769, 14.40323], [50.008258, 14.403213], [50.009209, 14.402987], [50.010054, 14.402755], [50.011129, 14.402269], [50.011663, 14.402068], [50.012253, 14.401931], [50.012967, 14.401864], [50.014254, 14.401767], [50.015394, 14.401807], [50.016921, 14.402026], [50.017758, 14.402252], [50.021441, 14.403389], [50.022255, 14.403558], [50.023169, 14.403688], [50.024461, 14.403809], [50.025685, 14.403772], [50.027362, 14.403849], [50.028005, 14.404112], [50.028724, 14.404757], [50.030063, 14.406201], [50.030843, 14.407128], [50.031766, 14.40827], [50.032157, 14.408548], [50.032486, 14.408621], [50.032768, 14.40859], [50.033163, 14.408419], [50.033592, 14.40804], [50.034253, 14.407313], [50.034621, 14.406977], [50.03493, 14.406811], [50.035242, 14.406729], [50.035589, 14.406729], [50.036007, 14.406862], [50.037154, 14.407497], [50.038207, 14.40817], [50.039009, 14.40884], [50.039733, 14.409294], [50.040803, 14.409796], [50.041024, 14.409966], [50.041618, 14.410595], [50.044812, 14.412707], [50.045464, 14.413069], [50.047753, 14.414334], [50.049985, 14.415558], [50.050118, 14.415547], [50.050205, 14.415454], [50.050268, 14.415246], [50.050256, 14.410735], [50.050253, 14.409835], [50.050271, 14.409678], [50.050364, 14.409497], [50.05086, 14.409249], [50.051176, 14.409193], [50.05361, 14.408869], [50.054315, 14.408871], [50.055849, 14.409031], [50.05729, 14.409365], [50.058751, 14.409677], [50.059079, 14.409687], [50.059683, 14.409558], [50.060415, 14.409443], [50.060823, 14.409304], [50.061472, 14.409213], [50.061898, 14.409235], [50.062756, 14.409176], [50.063133, 14.409054], [50.064124, 14.408555], [50.065812, 14.407856], [50.06732, 14.407122], [50.068411, 14.406445], [50.068892, 14.406094], [50.070459, 14.405022], [50.071003, 14.404596], [50.071741, 14.404154], [50.071899, 14.404081], [50.072004, 14.404114], [50.072097, 14.4043], [50.072376, 14.407209], [50.072994, 14.413618], [50.07304, 14.413817], [50.073148, 14.413954], [50.073255, 14.41398], [50.075119, 14.413851], [50.075895, 14.414018], [50.076444, 14.414158], [50.077298, 14.41437], [50.079087, 14.414098], [50.079842, 14.413852], [50.080721, 14.413266], [50.081291, 14.41303], [50.081701, 14.413009], [50.084296, 14.413414], [50.084806, 14.413667], [50.085801, 14.41422], [50.087251, 14.415055], [50.088074, 14.415331], [50.088501, 14.415498], [50.088884, 14.415654], [50.09027, 14.416244], [50.090881, 14.4168], [50.091059, 14.417037], [50.091534, 14.417914], [50.091633, 14.417945], [50.092308, 14.41753], [50.093785, 14.416588], [50.093887, 14.416641], [50.093989, 14.416883], [50.094117, 14.417676], [50.09453, 14.420515], [50.094823, 14.423354], [50.094958, 14.423776], [50.095235, 14.424423], [50.095286, 14.42539], [50.095365, 14.426329], [50.095734, 14.428391], [50.09593, 14.429785], [50.09604, 14.430439], [50.096269, 14.431313], [50.09659, 14.432387], [50.096726, 14.432591], [50.097584, 14.433152], [50.0978, 14.433245], [50.098565, 14.433263], [50.098737, 14.433294], [50.0988, 14.433373], [50.09884, 14.433536], [50.09884, 14.433689], [50.09882, 14.434279], [50.098958, 14.434779], [50.09937, 14.437032], [50.099372, 14.437244], [50.09931, 14.437407], [50.099207, 14.437484], [50.099082, 14.437473], [50.098298, 14.437248], [50.097501, 14.437112], [50.095099, 14.436986], [50.094018, 14.437142], [50.092694, 14.437385], [50.092436, 14.437379], [50.092316, 14.43728], [50.092037, 14.436782], [50.091744, 14.436587], [50.091564, 14.436501], [50.091294, 14.436508], [50.090876, 14.436783], [50.090714, 14.436969], [50.090682, 14.437223], [50.090855, 14.437858], [50.091211, 14.439123], [50.091713, 14.440921], [50.092683, 14.445266], [50.094127, 14.45179], [50.095279, 14.456984], [50.095928, 14.459787], [50.097868, 14.465177], [50.098481, 14.466824], [50.099265, 14.46885], [50.099647, 14.469971], [50.100328, 14.471495], [50.100958, 14.472631], [50.101346, 14.473174], [50.101679, 14.473515], [50.101941, 14.473514], [50.103135, 14.473348], [50.103315, 14.47335], [50.103477, 14.473492], [50.103674, 14.473922], [50.103941, 14.474764], [50.10428, 14.475847], [50.10497, 14.478252], [50.104941, 14.478526], [50.104535, 14.478884], [50.103818, 14.479465], [50.103719, 14.479625], [50.103695, 14.479822], [50.10439, 14.481861], [50.104674, 14.482684], [50.104875, 14.4833], [50.105311, 14.48447], [50.106577, 14.488076], [50.108938, 14.494876], [50.109708, 14.497226], [50.110217, 14.498839], [50.110792, 14.501227], [50.111011, 14.501802], [50.111232, 14.502426], [50.11126, 14.503652], [50.111087, 14.504621], [50.110701, 14.506597], [50.11062, 14.507534], [50.110595, 14.509072], [50.110597, 14.515657], [50.110594, 14.51778], [50.110262, 14.525925], [50.110139, 14.527856], [50.110074, 14.528007], [50.109943, 14.528111], [50.109808, 14.528127], [50.109008, 14.52814], [50.107516, 14.528373]], [[50.10809, 14.528281], [50.109293, 14.528128], [50.109854, 14.528123], [50.109992, 14.528085], [50.110105, 14.527953], [50.110156, 14.527769], [50.110557, 14.518773], [50.1106, 14.517322], [50.110591, 14.511537], [50.110596, 14.508305], [50.110642, 14.507122], [50.110898, 14.505628], [50.111206, 14.503991], [50.111267, 14.503474], [50.111214, 14.502321], [50.110929, 14.501615], [50.110746, 14.501054], [50.110205, 14.49879], [50.109359, 14.496103], [50.108895, 14.494751], [50.106286, 14.487239], [50.105122, 14.483994], [50.104717, 14.482818], [50.10456, 14.482343], [50.103727, 14.479978], [50.103694, 14.479761], [50.103741, 14.479571], [50.103837, 14.479446], [50.10486, 14.478653], [50.104968, 14.478425], [50.104953, 14.478174], [50.104224, 14.47567], [50.103876, 14.474557], [50.103607, 14.473738], [50.103409, 14.473411], [50.10326, 14.473341], [50.102481, 14.473435], [50.101787, 14.473533], [50.10161, 14.473478], [50.101317, 14.473135], [50.100572, 14.471973], [50.100194, 14.471201], [50.099563, 14.469754], [50.098815, 14.46762], [50.098381, 14.466584], [50.097565, 14.464341], [50.095849, 14.459511], [50.095179, 14.456534], [50.093969, 14.451076], [50.092515, 14.444505], [50.091477, 14.440065], [50.091062, 14.438592], [50.090717, 14.437384], [50.090678, 14.437135], [50.090749, 14.436902], [50.091105, 14.436612], [50.091368, 14.43649], [50.091631, 14.436526], [50.091928, 14.436685], [50.092088, 14.436854], [50.092355, 14.437325], [50.092494, 14.437392], [50.093319, 14.437261], [50.094656, 14.43702], [50.095265, 14.436995], [50.097802, 14.437142], [50.098455, 14.437293], [50.099112, 14.437478], [50.099254, 14.437461], [50.09934, 14.437357], [50.099378, 14.437172], [50.099333, 14.436797], [50.098857, 14.434488], [50.098814, 14.434154], [50.098842, 14.433654], [50.098833, 14.433476], [50.098783, 14.433343], [50.098705, 14.433282], [50.098131, 14.433253], [50.097742, 14.433227], [50.096838, 14.432687], [50.09668, 14.432537], [50.096541, 14.432263], [50.096253, 14.431254], [50.095983, 14.430158], [50.095878, 14.429254], [50.095643, 14.427819], [50.095319, 14.425998], [50.095288, 14.424811], [50.095184, 14.424253], [50.094903, 14.423654], [50.094796, 14.423106], [50.09447, 14.42007], [50.09407, 14.417361], [50.093963, 14.416783], [50.093836, 14.416602], [50.093735, 14.416598], [50.091727, 14.417905], [50.091596, 14.417943], [50.091486, 14.417863], [50.09101, 14.416954], [50.090439, 14.416379], [50.089289, 14.415821], [50.088702, 14.415587], [50.088482, 14.415491], [50.087856, 14.415285], [50.086261, 14.414483], [50.085337, 14.413947], [50.084541, 14.413524], [50.084122, 14.413375], [50.081599, 14.413], [50.081175, 14.413052], [50.080387, 14.413492], [50.079629, 14.413941], [50.078674, 14.414174], [50.077202, 14.414361], [50.076263, 14.414114], [50.075484, 14.413902], [50.074115, 14.413915], [50.073222, 14.413978], [50.073112, 14.413924], [50.073026, 14.413785], [50.072498, 14.408521], [50.072116, 14.40442], [50.072072, 14.404216], [50.07197, 14.404092], [50.07184, 14.404097], [50.071694, 14.404183], [50.07084, 14.404692], [50.069657, 14.405534], [50.068827, 14.406143], [50.067499, 14.407013], [50.06717, 14.407199], [50.06456, 14.408368], [50.063793, 14.408715], [50.062934, 14.409147], [50.0621, 14.40924], [50.061676, 14.409214], [50.061454, 14.409215], [50.060739, 14.409324], [50.06012, 14.40947], [50.059429, 14.40963], [50.058982, 14.409692], [50.058453, 14.409626], [50.056918, 14.409252], [50.055628, 14.408997], [50.053994, 14.408855], [50.053388, 14.408893], [50.051111, 14.409201], [50.050663, 14.409331], [50.050326, 14.409545], [50.05026, 14.409739], [50.050253, 14.409959], [50.05027, 14.415161], [50.050249, 14.415353], [50.050178, 14.415493], [50.050085, 14.415562], [50.049917, 14.415531], [50.047156, 14.414004], [50.045351, 14.413007], [50.044511, 14.412531], [50.041536, 14.41053], [50.040954, 14.4099], [50.040692, 14.409741], [50.039542, 14.409196], [50.0388, 14.40867], [50.037958, 14.407979], [50.036559, 14.407169], [50.035894, 14.406813], [50.035461, 14.406715], [50.035145, 14.406744], [50.034825, 14.406857], [50.034522, 14.407054], [50.034165, 14.40741], [50.033393, 14.408244], [50.032991, 14.408514], [50.032682, 14.408609], [50.032347, 14.408605], [50.031993, 14.408459], [50.031609, 14.408086], [50.030432, 14.406628], [50.029361, 14.405433], [50.028419, 14.404434], [50.027854, 14.404021], [50.027197, 14.403818], [50.02531, 14.403781], [50.024077, 14.403796], [50.023087, 14.403676], [50.021972, 14.403509], [50.018972, 14.402656], [50.017509, 14.402176], [50.016656, 14.401974], [50.015145, 14.401781], [50.013606, 14.40182], [50.012893, 14.401869], [50.012043, 14.40197], [50.011461, 14.402136], [50.010933, 14.402359], [50.009836, 14.40283], [50.009074, 14.403018], [50.008101, 14.403237], [50.007608, 14.403196], [50.006865, 14.402849], [50.00639, 14.402718], [50.005911, 14.402772], [50.00456, 14.40325], [50.003249, 14.403755], [50.002464, 14.404253], [50.00223, 14.404644], [50.002102, 14.405107], [50.002071, 14.405623], [50.002237, 14.410581], [50.002385, 14.412813], [50.002589, 14.413868], [50.002869, 14.414814], [50.003272, 14.415792], [50.004367, 14.418221], [50.004926, 14.41985], [50.005033, 14.420348], [50.005161, 14.421589], [50.005319, 14.422332], [50.006428, 14.426288], [50.006564, 14.426982], [50.006613, 14.427642], [50.006566, 14.428354], [50.006458, 14.428786], [50.006119, 14.429694], [50.005342, 14.431779], [50.005189, 14.432523], [50.005038, 14.43375], [50.00506, 14.43574], [50.005278, 14.437364], [50.005467, 14.438211], [50.005882, 14.439582], [50.006377, 14.441614], [50.006626, 14.442934], [50.006714, 14.443916], [50.006702, 14.445234], [50.006581, 14.446338], [50.006377, 14.447589], [50.006191, 14.449138], [50.005952, 14.454157], [50.005908, 14.455403], [50.005962, 14.455585], [50.006065, 14.455704], [50.006218, 14.45576], [50.00742, 14.455894], [50.008195, 14.455861], [50.00858, 14.455814], [50.008973, 14.455717]]],
|
||
"tram_18": [[[50.131872, 14.453738], [50.129059, 14.45543], [50.128754, 14.455611], [50.126998, 14.456656], [50.126622, 14.456872], [50.126355, 14.457034], [50.125963, 14.457241], [50.125912, 14.457254], [50.125799, 14.457265], [50.125671, 14.457241], [50.12551, 14.457137], [50.125117, 14.456755], [50.124885, 14.456541], [50.124367, 14.456059], [50.124277, 14.455989], [50.12416, 14.455931], [50.123957, 14.45587], [50.123771, 14.455862], [50.123684, 14.455888], [50.123379, 14.456033], [50.123045, 14.456085], [50.12296, 14.456091], [50.12277, 14.45604], [50.122619, 14.455948], [50.121956, 14.455489], [50.121863, 14.455434], [50.121756, 14.455421], [50.121679, 14.455448], [50.121612, 14.455512], [50.121517, 14.455646], [50.121184, 14.456166], [50.121003, 14.456553], [50.120752, 14.457278], [50.12065, 14.457515], [50.119973, 14.45886], [50.119891, 14.459106], [50.119812, 14.459418], [50.119735, 14.45991], [50.119278, 14.463269], [50.119197, 14.463833], [50.119066, 14.464625], [50.119003, 14.464904], [50.11887, 14.465331], [50.118712, 14.465721], [50.118538, 14.466054], [50.118323, 14.466383], [50.118138, 14.466613], [50.117917, 14.466832], [50.117584, 14.467087], [50.116939, 14.467408], [50.116637, 14.467609], [50.116487, 14.467745], [50.115966, 14.468328], [50.115681, 14.468622], [50.114372, 14.470532], [50.114243, 14.470785], [50.114127, 14.471177], [50.114097, 14.471532], [50.114119, 14.471807], [50.114426, 14.47358], [50.114463, 14.473962], [50.114469, 14.47449], [50.114411, 14.474813], [50.114252, 14.475365], [50.114135, 14.475602], [50.113661, 14.476132], [50.113534, 14.476223], [50.113406, 14.476259], [50.113301, 14.476256], [50.112749, 14.476021], [50.112602, 14.475928], [50.112505, 14.475828], [50.112094, 14.475324], [50.1118, 14.474954], [50.111603, 14.474659], [50.111336, 14.474131], [50.110953, 14.473319], [50.110631, 14.472627], [50.110464, 14.472398], [50.110309, 14.472276], [50.110099, 14.472215], [50.109576, 14.472292], [50.109044, 14.472383], [50.108853, 14.472363], [50.10836, 14.472236], [50.108064, 14.472198], [50.107875, 14.472221], [50.107074, 14.472485], [50.106591, 14.472618], [50.10567, 14.472804], [50.105122, 14.472934], [50.104806, 14.473056], [50.10445, 14.473124], [50.103847, 14.473254], [50.103387, 14.473314], [50.103135, 14.473348], [50.102283, 14.473461], [50.101788, 14.473536], [50.101559, 14.47349], [50.101306, 14.47344], [50.100818, 14.47311], [50.100643, 14.473053], [50.100444, 14.473091], [50.100159, 14.473187], [50.09969, 14.473169], [50.099408, 14.473185], [50.099118, 14.473264], [50.098854, 14.473389], [50.098584, 14.473576], [50.098376, 14.47377], [50.097782, 14.4744], [50.097545, 14.474604], [50.097308, 14.474777], [50.096975, 14.474967], [50.096405, 14.475248], [50.096206, 14.475319], [50.095964, 14.47536], [50.095929, 14.47536], [50.095893, 14.47536], [50.09565, 14.475335], [50.095376, 14.475247], [50.095235, 14.475134], [50.095106, 14.474942], [50.09472, 14.474251], [50.094367, 14.473601], [50.093861, 14.472461], [50.092449, 14.469241], [50.092313, 14.469023], [50.092152, 14.468835], [50.091974, 14.468689], [50.091562, 14.468435], [50.090622, 14.467864], [50.090531, 14.46785], [50.090365, 14.467905], [50.090033, 14.468071], [50.089129, 14.468549], [50.088565, 14.468838], [50.086617, 14.469828], [50.08499, 14.470473], [50.084576, 14.470637], [50.08411, 14.470824], [50.081697, 14.471779], [50.079703, 14.472566], [50.078757, 14.472934], [50.078599, 14.47296], [50.078508, 14.472898], [50.07845, 14.472786], [50.078418, 14.472616], [50.078363, 14.471609], [50.078315, 14.470652], [50.078158, 14.467501], [50.078106, 14.466458], [50.078087, 14.466062], [50.077948, 14.463438], [50.077924, 14.462433], [50.077871, 14.461352], [50.077843, 14.461149], [50.077809, 14.46106], [50.077743, 14.460988], [50.077632, 14.460973], [50.075976, 14.461511], [50.075867, 14.461515], [50.075785, 14.461472], [50.075699, 14.461359], [50.075648, 14.461204], [50.075555, 14.459499], [50.075476, 14.457934], [50.075434, 14.454484], [50.075429, 14.454093], [50.07539, 14.450125], [50.075378, 14.448562], [50.07535, 14.443555], [50.075336, 14.439342], [50.075315, 14.439197], [50.075272, 14.439111], [50.0752, 14.439053], [50.075124, 14.439043], [50.074521, 14.439037], [50.074431, 14.438987], [50.074366, 14.438879], [50.074345, 14.438751], [50.07436, 14.438614], [50.074872, 14.437402], [50.074946, 14.437121], [50.074957, 14.436891], [50.074967, 14.435974], [50.074991, 14.435785], [50.075066, 14.435649], [50.075281, 14.435473], [50.075382, 14.435309], [50.075412, 14.435138], [50.075416, 14.432746], [50.075407, 14.43258], [50.075365, 14.432452], [50.075287, 14.43237], [50.075198, 14.432355], [50.075029, 14.432423], [50.073971, 14.432878], [50.073102, 14.433226], [50.072359, 14.433527], [50.072184, 14.433553], [50.070307, 14.433045], [50.070128, 14.432975], [50.07002, 14.432904], [50.069844, 14.432731], [50.069591, 14.432429], [50.06949, 14.432342], [50.069406, 14.432311], [50.069304, 14.432318], [50.068565, 14.4327], [50.068431, 14.43278], [50.068304, 14.432912], [50.068211, 14.43308], [50.06815, 14.433293], [50.068129, 14.433486], [50.068235, 14.435136], [50.068279, 14.435792], [50.068283, 14.436193], [50.068226, 14.436442], [50.067946, 14.436916], [50.067131, 14.43813], [50.066883, 14.438411], [50.065561, 14.439548], [50.065313, 14.439753], [50.064794, 14.440186], [50.064544, 14.440424], [50.064471, 14.440553], [50.064005, 14.44153], [50.063481, 14.442624], [50.063402, 14.442763], [50.063339, 14.44282], [50.06327, 14.44284], [50.063195, 14.442824], [50.063123, 14.442784], [50.063027, 14.442714], [50.062974, 14.442638], [50.062922, 14.442456], [50.062798, 14.440807], [50.062629, 14.438626], [50.062576, 14.438401], [50.062463, 14.438141], [50.062379, 14.438017], [50.062213, 14.437845], [50.061545, 14.437246], [50.061092, 14.436857], [50.060417, 14.436259], [50.060236, 14.436138], [50.060044, 14.436082], [50.057857, 14.435771], [50.057624, 14.435683], [50.057375, 14.435489], [50.057211, 14.435303], [50.05708, 14.435102], [50.056819, 14.434586], [50.056734, 14.434493], [50.056656, 14.434462], [50.056583, 14.43447], [50.056516, 14.434514], [50.056105, 14.434924], [50.054438, 14.436708], [50.054087, 14.437084], [50.053977, 14.437223], [50.053917, 14.43739], [50.053918, 14.437552], [50.053994, 14.437757], [50.054774, 14.439158], [50.055587, 14.440679], [50.055903, 14.441196], [50.056003, 14.441274], [50.056173, 14.441319], [50.056556, 14.441345], [50.056823, 14.441369], [50.056922, 14.441357], [50.056994, 14.441311], [50.057062, 14.441214], [50.05711, 14.441046], [50.057153, 14.44034], [50.05715, 14.438443], [50.057109, 14.438267], [50.056868, 14.437822]], [[50.10809, 14.528281], [50.109008, 14.52814], [50.109311, 14.528127], [50.109854, 14.528123], [50.109943, 14.528111], [50.110035, 14.52805], [50.110105, 14.527953], [50.110139, 14.527856], [50.110168, 14.527619], [50.110557, 14.518773], [50.110594, 14.51778], [50.110598, 14.516114], [50.110591, 14.511537], [50.110595, 14.509072], [50.110602, 14.507938], [50.110642, 14.507122], [50.110701, 14.506597], [50.110938, 14.505419], [50.111206, 14.503991], [50.11126, 14.503652], [50.111245, 14.502559], [50.111214, 14.502321], [50.111011, 14.501802], [50.110858, 14.501431], [50.110746, 14.501054], [50.110217, 14.498839], [50.1101, 14.498411], [50.109359, 14.496103], [50.108938, 14.494876], [50.106762, 14.488609], [50.106286, 14.487239], [50.105311, 14.48447], [50.105006, 14.483682], [50.104717, 14.482818], [50.104674, 14.482684], [50.104424, 14.48196], [50.103727, 14.479978], [50.103695, 14.479822], [50.103705, 14.479684], [50.103741, 14.479571], [50.103818, 14.479465], [50.103973, 14.479336], [50.10486, 14.478653], [50.104941, 14.478526], [50.104976, 14.478321], [50.104953, 14.478174], [50.10428, 14.475847], [50.104103, 14.475279], [50.103876, 14.474557], [50.103674, 14.473922], [50.103538, 14.47359], [50.103409, 14.473411], [50.103315, 14.47335], [50.103231, 14.473341], [50.102481, 14.473435], [50.101941, 14.473514], [50.10174, 14.473531], [50.101362, 14.473455], [50.101212, 14.473391], [50.100728, 14.47307], [50.100545, 14.47306], [50.100249, 14.473165], [50.100055, 14.473197], [50.099521, 14.473175], [50.099303, 14.473207], [50.098996, 14.473316], [50.098756, 14.473449], [50.098497, 14.473651], [50.097976, 14.474203], [50.097662, 14.474508], [50.097461, 14.474669], [50.097132, 14.474884], [50.096606, 14.475153], [50.096307, 14.475287], [50.096058, 14.475351], [50.095947, 14.47536], [50.095911, 14.47536], [50.095779, 14.475356], [50.09547, 14.475287], [50.095296, 14.475193], [50.095161, 14.475038], [50.095084, 14.474905], [50.094534, 14.473917], [50.094254, 14.473357], [50.092541, 14.469435], [50.092377, 14.469118], [50.092226, 14.468911], [50.092073, 14.468765], [50.091826, 14.46859], [50.09071, 14.467907], [50.09057, 14.467851], [50.090467, 14.467861], [50.090085, 14.468045], [50.08997, 14.468106], [50.089071, 14.468579], [50.087283, 14.469495], [50.08561, 14.470228], [50.084652, 14.470607], [50.084165, 14.470801], [50.082585, 14.471434], [50.081675, 14.471787], [50.079293, 14.472728], [50.078632, 14.472965], [50.078549, 14.472935], [50.078474, 14.47285], [50.078429, 14.472702], [50.078415, 14.472572], [50.078349, 14.471337], [50.078186, 14.468057], [50.07815, 14.467346], [50.078099, 14.466318], [50.07807, 14.465742], [50.077927, 14.462501], [50.077879, 14.461518], [50.077862, 14.461246], [50.077827, 14.4611], [50.077789, 14.461032], [50.077713, 14.460976], [50.076044, 14.461493], [50.075916, 14.461519], [50.075832, 14.461502], [50.075742, 14.461428], [50.075675, 14.461305], [50.075639, 14.461135], [50.075527, 14.458949], [50.075457, 14.456669], [50.075432, 14.454325], [50.075411, 14.452925], [50.075384, 14.449325], [50.075353, 14.444186], [50.075333, 14.440698], [50.075327, 14.439245], [50.075292, 14.439142], [50.075247, 14.439086], [50.075176, 14.439047], [50.074604, 14.439044], [50.074476, 14.439024], [50.074391, 14.438931], [50.074355, 14.438836], [50.074349, 14.438672], [50.074388, 14.438529], [50.074927, 14.437225], [50.074955, 14.437032], [50.074967, 14.435997], [50.074974, 14.435876], [50.075018, 14.435721], [50.075121, 14.435595], [50.075347, 14.43539], [50.075405, 14.435206], [50.075415, 14.435004], [50.075414, 14.432685], [50.075391, 14.432513], [50.075333, 14.432407], [50.075243, 14.432354], [50.075109, 14.432385], [50.074986, 14.432443], [50.073473, 14.433082], [50.072881, 14.433312], [50.072237, 14.433555], [50.072108, 14.433539], [50.070207, 14.433012], [50.070078, 14.432944], [50.069947, 14.432841], [50.069779, 14.432653], [50.06953, 14.432369], [50.069444, 14.432321], [50.069366, 14.432309], [50.069232, 14.432346], [50.068518, 14.432726], [50.068355, 14.43285], [50.06826, 14.432978], [50.068171, 14.433198], [50.068138, 14.433372], [50.06813, 14.433584], [50.068276, 14.435749], [50.068291, 14.436033], [50.068262, 14.436315], [50.068169, 14.436572], [50.067241, 14.437978], [50.067023, 14.438261], [50.066764, 14.438518], [50.065517, 14.439585], [50.065128, 14.439905], [50.064629, 14.440324], [50.064501, 14.440489], [50.064155, 14.441215], [50.063982, 14.441578], [50.063437, 14.442708], [50.063367, 14.442801], [50.063302, 14.442835], [50.063234, 14.442837], [50.063149, 14.442798], [50.063051, 14.442737], [50.062996, 14.442675], [50.062939, 14.44255], [50.062908, 14.442269], [50.062644, 14.438759], [50.062616, 14.438547], [50.06252, 14.438251], [50.062426, 14.43808], [50.062315, 14.437945], [50.061888, 14.437549], [50.061364, 14.437103], [50.060936, 14.436716], [50.060305, 14.436175], [50.060172, 14.436111], [50.057934, 14.435789], [50.057738, 14.435733], [50.057489, 14.435588], [50.05729, 14.4354], [50.05714, 14.435201], [50.056844, 14.434634], [50.056784, 14.434538], [50.056708, 14.434478], [50.056609, 14.434464], [50.056553, 14.434485], [50.056459, 14.434571], [50.056059, 14.43497], [50.054199, 14.436963], [50.054033, 14.437145], [50.05394, 14.437299], [50.053912, 14.437466], [50.053932, 14.437618], [50.054023, 14.437814], [50.055127, 14.439826], [50.055847, 14.441127], [50.055939, 14.44123], [50.056067, 14.441305], [50.056233, 14.441323], [50.056586, 14.441347], [50.056887, 14.441367], [50.056957, 14.441341], [50.057032, 14.441266], [50.057094, 14.441125], [50.057119, 14.440949], [50.057172, 14.439731], [50.057132, 14.438329], [50.057037, 14.438126], [50.056857, 14.437802]]],
|
||
"tram_2": [[[50.087014, 14.339773], [50.087025, 14.340063], [50.087035, 14.340257], [50.087055, 14.340376], [50.088092, 14.344484], [50.08964, 14.350611], [50.091465, 14.357828], [50.091636, 14.358616], [50.091715, 14.359265], [50.091747, 14.359812], [50.092058, 14.365855], [50.09206, 14.367554], [50.092143, 14.368536], [50.092334, 14.369383], [50.092481, 14.369883], [50.09264, 14.370485], [50.092783, 14.371297], [50.092944, 14.373093], [50.092964, 14.373702], [50.092869, 14.379044], [50.092848, 14.38227], [50.092842, 14.384204], [50.092826, 14.386822], [50.092825, 14.387286], [50.092851, 14.38754], [50.092919, 14.387741], [50.093896, 14.389861], [50.094003, 14.390094], [50.094216, 14.390571], [50.094313, 14.390901], [50.094422, 14.39154], [50.09447, 14.39183], [50.09453, 14.392301], [50.094582, 14.392792], [50.094779, 14.394868], [50.094918, 14.396191], [50.094978, 14.396675], [50.095075, 14.397177], [50.095302, 14.398081], [50.09674, 14.402268], [50.097069, 14.40343], [50.097337, 14.404866], [50.097599, 14.406283], [50.097674, 14.407064], [50.097679, 14.407212], [50.097662, 14.40735], [50.097616, 14.407468], [50.09754, 14.407554], [50.097359, 14.407673], [50.096664, 14.408137], [50.095185, 14.409055], [50.094875, 14.409243], [50.094504, 14.409489], [50.094377, 14.409533], [50.094198, 14.409531], [50.093731, 14.409399], [50.093602, 14.409297], [50.093512, 14.409169], [50.09342, 14.408922], [50.093323, 14.408311], [50.093152, 14.406777], [50.0931, 14.406331], [50.093048, 14.406246], [50.092983, 14.406198], [50.09292, 14.40619], [50.09285, 14.406217], [50.092785, 14.40629], [50.092748, 14.406385], [50.092735, 14.406497], [50.092771, 14.406758], [50.092891, 14.408512], [50.09288, 14.408724], [50.092827, 14.40892], [50.092745, 14.409073], [50.092635, 14.409175], [50.091739, 14.409588], [50.091238, 14.409763], [50.090977, 14.409905], [50.090383, 14.410151], [50.090229, 14.410215], [50.090088, 14.410283], [50.09001, 14.410372], [50.089955, 14.410529], [50.089247, 14.414271], [50.089174, 14.414446], [50.088965, 14.414641], [50.0889, 14.414741], [50.088864, 14.414857], [50.08879, 14.415264], [50.088732, 14.415414], [50.088667, 14.415483], [50.088594, 14.415511], [50.088501, 14.415498], [50.088192, 14.415373], [50.087856, 14.415285], [50.087251, 14.415055], [50.085954, 14.414322], [50.085337, 14.413947], [50.084806, 14.413667], [50.084442, 14.41347], [50.084122, 14.413375], [50.081701, 14.413009], [50.08153, 14.413019], [50.08145, 14.413101], [50.081423, 14.413172], [50.081404, 14.413327], [50.08142, 14.413964], [50.081436, 14.414885], [50.081457, 14.415339], [50.081499, 14.415676], [50.081634, 14.41639], [50.08199, 14.417753], [50.082292, 14.418855], [50.0823, 14.418956], [50.082289, 14.419042], [50.082264, 14.419119], [50.082222, 14.419186], [50.08217, 14.419231], [50.081666, 14.419443], [50.081176, 14.419644], [50.080746, 14.419791], [50.080447, 14.419828], [50.080165, 14.41981], [50.079609, 14.419637], [50.07937, 14.419601], [50.078986, 14.419564], [50.078071, 14.419525], [50.077654, 14.419548], [50.077531, 14.419538], [50.076463, 14.419323], [50.076116, 14.419249], [50.075797, 14.41916], [50.075619, 14.419121], [50.074013, 14.418784], [50.073836, 14.418739], [50.073459, 14.418524], [50.073292, 14.418449], [50.072466, 14.418174], [50.07234, 14.418148], [50.072248, 14.418154], [50.072112, 14.418204], [50.071767, 14.418475], [50.071023, 14.419006], [50.070925, 14.419104], [50.070722, 14.419367], [50.070623, 14.419452], [50.070465, 14.419542], [50.068733, 14.420535], [50.068118, 14.420924], [50.06765, 14.421214], [50.067261, 14.421452], [50.067016, 14.421622], [50.066808, 14.421816], [50.066604, 14.422064], [50.065612, 14.42345], [50.065108, 14.42444], [50.065014, 14.424724], [50.064998, 14.425009], [50.065046, 14.429174], [50.065085, 14.432604], [50.065102, 14.432743], [50.065183, 14.432945], [50.065395, 14.433354], [50.065435, 14.433579], [50.06542, 14.433818], [50.065218, 14.434365], [50.064953, 14.435127], [50.064867, 14.435538], [50.064781, 14.436278], [50.064649, 14.437437], [50.064645, 14.437676], [50.064685, 14.437893], [50.065234, 14.439506], [50.065433, 14.440049], [50.065702, 14.440839], [50.065742, 14.440957], [50.066112, 14.442039], [50.066353, 14.442818], [50.066421, 14.443177], [50.066458, 14.443542], [50.066463, 14.443899], [50.066438, 14.444283], [50.066126, 14.446974], [50.066083, 14.447582], [50.066019, 14.448694], [50.065978, 14.449761], [50.06598, 14.451278], [50.066055, 14.452747], [50.066176, 14.454187], [50.06625, 14.454838], [50.066501, 14.456389], [50.06659, 14.456883], [50.066831, 14.458102], [50.067114, 14.459396], [50.067403, 14.460739], [50.067547, 14.461416], [50.068354, 14.4652], [50.069116, 14.468688], [50.069487, 14.470534], [50.070664, 14.47628], [50.070746, 14.476738], [50.070762, 14.476907], [50.070818, 14.477856], [50.071014, 14.481045], [50.071279, 14.485129], [50.071338, 14.485446], [50.071627, 14.486555], [50.071669, 14.486765], [50.071678, 14.48688], [50.071651, 14.48707], [50.071583, 14.487207], [50.071396, 14.487449], [50.070729, 14.488315], [50.070474, 14.488677], [50.069991, 14.489386], [50.069729, 14.489793], [50.069546, 14.490141], [50.068612, 14.492241], [50.068315, 14.492759], [50.067806, 14.493611], [50.067533, 14.494095], [50.067367, 14.494519], [50.067108, 14.495369], [50.066646, 14.496898], [50.066024, 14.49898], [50.065462, 14.501869], [50.065272, 14.50284], [50.065164, 14.503197], [50.065033, 14.503469], [50.064888, 14.503705], [50.064351, 14.504388], [50.064191, 14.504553], [50.064005, 14.504662], [50.063827, 14.504686], [50.063704, 14.504668], [50.062074, 14.504133], [50.061297, 14.503873], [50.061151, 14.503848], [50.061016, 14.503902], [50.060925, 14.504027], [50.060884, 14.504131], [50.060748, 14.505134], [50.060701, 14.505467], [50.060602, 14.505986]], [[50.087014, 14.339773], [50.087025, 14.340063], [50.087035, 14.340257], [50.087055, 14.340376], [50.088092, 14.344484], [50.08964, 14.350611], [50.091465, 14.357828], [50.091636, 14.358616], [50.091715, 14.359265], [50.091747, 14.359812], [50.092058, 14.365855], [50.09206, 14.367554], [50.092143, 14.368536], [50.092334, 14.369383], [50.092481, 14.369883], [50.09264, 14.370485], [50.092783, 14.371297], [50.092944, 14.373093], [50.092964, 14.373702], [50.092869, 14.379044], [50.092848, 14.38227], [50.092842, 14.384204], [50.092826, 14.386822], [50.092825, 14.387286], [50.092851, 14.38754], [50.092919, 14.387741], [50.093896, 14.389861], [50.094003, 14.390094], [50.094216, 14.390571], [50.094313, 14.390901], [50.094422, 14.39154], [50.09447, 14.39183], [50.09453, 14.392301], [50.094582, 14.392792], [50.094779, 14.394868], [50.094918, 14.396191], [50.094978, 14.396675], [50.095075, 14.397177], [50.095302, 14.398081], [50.09674, 14.402268], [50.097069, 14.40343], [50.097337, 14.404866], [50.097599, 14.406283], [50.097674, 14.407064], [50.097679, 14.407212], [50.097662, 14.40735], [50.097616, 14.407468], [50.09754, 14.407554], [50.097359, 14.407673], [50.096664, 14.408137], [50.095185, 14.409055], [50.094875, 14.409243], [50.094504, 14.409489], [50.094377, 14.409533], [50.094198, 14.409531], [50.093731, 14.409399], [50.093602, 14.409297], [50.093512, 14.409169], [50.09342, 14.408922], [50.093323, 14.408311], [50.093152, 14.406777], [50.0931, 14.406331], [50.093048, 14.406246], [50.092983, 14.406198], [50.09292, 14.40619], [50.09285, 14.406217], [50.092785, 14.40629], [50.092748, 14.406385], [50.092735, 14.406497], [50.092771, 14.406758], [50.092891, 14.408512], [50.09288, 14.408724], [50.092827, 14.40892], [50.092745, 14.409073], [50.092635, 14.409175], [50.091739, 14.409588], [50.091238, 14.409763], [50.090977, 14.409905], [50.090383, 14.410151], [50.090229, 14.410215], [50.090088, 14.410283], [50.09001, 14.410372], [50.089955, 14.410529], [50.089247, 14.414271], [50.089174, 14.414446], [50.088965, 14.414641], [50.0889, 14.414741], [50.088864, 14.414857], [50.08879, 14.415264], [50.088732, 14.415414], [50.088667, 14.415483], [50.088594, 14.415511], [50.088501, 14.415498], [50.088192, 14.415373], [50.087856, 14.415285], [50.087251, 14.415055], [50.085954, 14.414322], [50.085337, 14.413947], [50.084806, 14.413667], [50.084442, 14.41347], [50.084122, 14.413375], [50.081701, 14.413009], [50.08153, 14.413019], [50.08145, 14.413101], [50.081423, 14.413172], [50.081404, 14.413327], [50.08142, 14.413964], [50.081436, 14.414885], [50.081457, 14.415339], [50.081499, 14.415676], [50.081634, 14.41639], [50.08199, 14.417753], [50.082292, 14.418855], [50.0823, 14.418956], [50.082289, 14.419042], [50.082264, 14.419119], [50.082222, 14.419186], [50.08217, 14.419231], [50.081666, 14.419443], [50.081176, 14.419644], [50.080746, 14.419791], [50.080447, 14.419828], [50.080165, 14.41981], [50.079609, 14.419637], [50.07937, 14.419601], [50.078986, 14.419564], [50.078071, 14.419525], [50.077654, 14.419548], [50.077531, 14.419538], [50.076463, 14.419323], [50.076116, 14.419249], [50.075797, 14.41916], [50.075619, 14.419121], [50.074013, 14.418784], [50.073836, 14.418739], [50.073459, 14.418524], [50.073292, 14.418449], [50.072466, 14.418174], [50.07234, 14.418148], [50.072248, 14.418154], [50.072112, 14.418204], [50.071767, 14.418475], [50.071023, 14.419006], [50.070925, 14.419104], [50.070722, 14.419367], [50.070623, 14.419452], [50.070465, 14.419542], [50.068733, 14.420535], [50.068118, 14.420924], [50.06765, 14.421214], [50.067261, 14.421452], [50.067016, 14.421622], [50.066808, 14.421816], [50.066604, 14.422064], [50.065612, 14.42345], [50.065108, 14.42444], [50.065014, 14.424724], [50.064998, 14.425009], [50.065046, 14.429174], [50.065085, 14.432604], [50.065102, 14.432743], [50.065183, 14.432945], [50.065395, 14.433354], [50.065435, 14.433579], [50.06542, 14.433818], [50.065218, 14.434365], [50.064953, 14.435127], [50.064867, 14.435538], [50.064781, 14.436278], [50.064649, 14.437437], [50.064645, 14.437676], [50.064685, 14.437893], [50.065234, 14.439506], [50.065433, 14.440049], [50.065702, 14.440839], [50.065742, 14.440957], [50.066112, 14.442039], [50.066353, 14.442818], [50.066421, 14.443177], [50.066458, 14.443542], [50.066463, 14.443899], [50.066438, 14.444283], [50.066126, 14.446974], [50.066083, 14.447582], [50.066019, 14.448694], [50.065978, 14.449761], [50.06598, 14.451278], [50.066055, 14.452747], [50.066176, 14.454187], [50.06625, 14.454838], [50.066501, 14.456389], [50.06659, 14.456883], [50.066831, 14.458102], [50.067114, 14.459396], [50.067403, 14.460739], [50.067547, 14.461416], [50.068354, 14.4652], [50.069116, 14.468688], [50.069487, 14.470534], [50.070664, 14.47628], [50.070746, 14.476738], [50.070762, 14.476907], [50.070818, 14.477856], [50.071014, 14.481045], [50.071279, 14.485129], [50.071338, 14.485446], [50.071627, 14.486555], [50.071667, 14.486741], [50.071834, 14.48763], [50.071985, 14.488518], [50.07221, 14.490049], [50.0723, 14.490276], [50.072397, 14.490401], [50.073065, 14.491043], [50.073158, 14.49112], [50.073233, 14.491135], [50.073314, 14.491117], [50.075237, 14.489901], [50.07568, 14.489627], [50.075882, 14.489514], [50.076189, 14.489369], [50.076466, 14.489279], [50.076632, 14.489248], [50.076692, 14.489277], [50.076761, 14.489368], [50.076794, 14.489508], [50.076709, 14.490487], [50.076687, 14.490704], [50.076755, 14.492315], [50.076911, 14.494721], [50.077273, 14.500313], [50.07757, 14.504982], [50.077636, 14.506034], [50.077801, 14.508965], [50.077834, 14.509188], [50.077893, 14.509375], [50.07794, 14.509512], [50.078169, 14.509937]]],
|
||
"tram_22": [[[50.075581, 14.322851], [50.075502, 14.322929], [50.075441, 14.323094], [50.075402, 14.323693], [50.075405, 14.324018], [50.075403, 14.324088], [50.0754, 14.324152], [50.075398, 14.324223], [50.075396, 14.324287], [50.075394, 14.324357], [50.075391, 14.324422], [50.075351, 14.32583], [50.075389, 14.326761], [50.075916, 14.331065], [50.076309, 14.333621], [50.076547, 14.334752], [50.078089, 14.340702], [50.078613, 14.34274], [50.079269, 14.345126], [50.079896, 14.347556], [50.080346, 14.349243], [50.081191, 14.352448], [50.081435, 14.35321], [50.082788, 14.356767], [50.082967, 14.357328], [50.083159, 14.358548], [50.083288, 14.359593], [50.08362, 14.36288], [50.083776, 14.364215], [50.084064, 14.366298], [50.084095, 14.367265], [50.083944, 14.370612], [50.083943, 14.371603], [50.083991, 14.372224], [50.08447, 14.375086], [50.084624, 14.376007], [50.085357, 14.380751], [50.085628, 14.382498], [50.08601, 14.384079], [50.086181, 14.384771], [50.086362, 14.385563], [50.086844, 14.387531], [50.087121, 14.388089], [50.087291, 14.388221], [50.087691, 14.388209], [50.087909, 14.388181], [50.089041, 14.387983], [50.08938, 14.387987], [50.090867, 14.388757], [50.092353, 14.389045], [50.09256, 14.389137], [50.092692, 14.389308], [50.092964, 14.391263], [50.093034, 14.391876], [50.093079, 14.392025], [50.093166, 14.392127], [50.093262, 14.392158], [50.09421, 14.392022], [50.094361, 14.392025], [50.094458, 14.392106], [50.094539, 14.392386], [50.094779, 14.394868], [50.094946, 14.396444], [50.095075, 14.397177], [50.095442, 14.398491], [50.097069, 14.40343], [50.097588, 14.406214], [50.097674, 14.407064], [50.097678, 14.407255], [50.097616, 14.407468], [50.09741, 14.40764], [50.096664, 14.408137], [50.094958, 14.409192], [50.094504, 14.409489], [50.094299, 14.409541], [50.093731, 14.409399], [50.093564, 14.40925], [50.09342, 14.408922], [50.093279, 14.407955], [50.0931, 14.406331], [50.093017, 14.406218], [50.09292, 14.40619], [50.092815, 14.406248], [50.092748, 14.406385], [50.092739, 14.406566], [50.092891, 14.408512], [50.092855, 14.408837], [50.092745, 14.409073], [50.092312, 14.409332], [50.091238, 14.409763], [50.090922, 14.409928], [50.090239, 14.410206], [50.090137, 14.410181], [50.09005, 14.410064], [50.090023, 14.409895], [50.090066, 14.408142], [50.090001, 14.407923], [50.089468, 14.407282], [50.089194, 14.407074], [50.088825, 14.406706], [50.088749, 14.406601], [50.088646, 14.406271], [50.088618, 14.406063], [50.088527, 14.40488], [50.088461, 14.404597], [50.088377, 14.404472], [50.088279, 14.404425], [50.087903, 14.404364], [50.087774, 14.404185], [50.087677, 14.403918], [50.087455, 14.403769], [50.087144, 14.40371], [50.086458, 14.404005], [50.085768, 14.404225], [50.084808, 14.404302], [50.083573, 14.404435], [50.081816, 14.404484], [50.081343, 14.404501], [50.081253, 14.404555], [50.081187, 14.404695], [50.081202, 14.406128], [50.081404, 14.413327], [50.081421, 14.414021], [50.081457, 14.415339], [50.081564, 14.416047], [50.08199, 14.417753], [50.082299, 14.418907], [50.082289, 14.419042], [50.082245, 14.419156], [50.08217, 14.419231], [50.081189, 14.419639], [50.080746, 14.419791], [50.080242, 14.419821], [50.079609, 14.419637], [50.079343, 14.419598], [50.078071, 14.419525], [50.077551, 14.419542], [50.076463, 14.419323], [50.07603, 14.419262], [50.075923, 14.419356], [50.075871, 14.419491], [50.075777, 14.420369], [50.075681, 14.42151], [50.075635, 14.42332], [50.075508, 14.430593], [50.075441, 14.431691], [50.07542, 14.432216], [50.075415, 14.435004], [50.075382, 14.435309], [50.075121, 14.435595], [50.074991, 14.435785], [50.074967, 14.435997], [50.074946, 14.437121], [50.074388, 14.438529], [50.073571, 14.440433], [50.072457, 14.443287], [50.072289, 14.443906], [50.071978, 14.44658], [50.071922, 14.447817], [50.071999, 14.450453], [50.071929, 14.450838], [50.071655, 14.451089], [50.070968, 14.451596], [50.070644, 14.451701], [50.069888, 14.451558], [50.069675, 14.451614], [50.069558, 14.45181], [50.069183, 14.453619], [50.069119, 14.454218], [50.069026, 14.455819], [50.068566, 14.457348], [50.068217, 14.458364], [50.068138, 14.458756], [50.068094, 14.459676], [50.068013, 14.45991], [50.067625, 14.460166], [50.067462, 14.460309], [50.067392, 14.460502], [50.067404, 14.460739], [50.067725, 14.462248], [50.069116, 14.468688], [50.069514, 14.470665], [50.070746, 14.476738], [50.070774, 14.477126], [50.071014, 14.481045], [50.071307, 14.485297], [50.071627, 14.486555], [50.071824, 14.487576], [50.071985, 14.488518], [50.072247, 14.490167], [50.072397, 14.490401], [50.073122, 14.491097], [50.073233, 14.491135], [50.074348, 14.490467], [50.07568, 14.489627], [50.076005, 14.489456], [50.076466, 14.489279], [50.076663, 14.489258], [50.076761, 14.489368], [50.076795, 14.48959], [50.076687, 14.490704], [50.076853, 14.493831], [50.077273, 14.500313], [50.077629, 14.505915], [50.077801, 14.508965], [50.077867, 14.509283], [50.07794, 14.509512], [50.078209, 14.510002], [50.078341, 14.510082], [50.07845, 14.510027], [50.078533, 14.509893], [50.078565, 14.509698], [50.078531, 14.509505], [50.078447, 14.509397], [50.078325, 14.509384], [50.07802, 14.509419], [50.077965, 14.509397], [50.077918, 14.509351], [50.077869, 14.509268], [50.077801, 14.508965], [50.077629, 14.505915], [50.077273, 14.500313], [50.076853, 14.493831], [50.076687, 14.490704], [50.076795, 14.48959], [50.076761, 14.489368], [50.076663, 14.489258], [50.076466, 14.489279], [50.076005, 14.489456], [50.07568, 14.489627]], [[50.053285, 14.536645], [50.053162, 14.536426], [50.053021, 14.536135], [50.052977, 14.535755], [50.052996, 14.535308], [50.052869, 14.534947], [50.052694, 14.534327], [50.052609, 14.533689], [50.052704, 14.530382], [50.052932, 14.524023], [50.05303, 14.521597], [50.053193, 14.520681], [50.053423, 14.519984], [50.053914, 14.51894], [50.055897, 14.514851], [50.05725, 14.512577], [50.05979, 14.508283], [50.060081, 14.50758], [50.060572, 14.506108], [50.060701, 14.505467], [50.060866, 14.504208], [50.060925, 14.504027], [50.06107, 14.50387], [50.061297, 14.503873], [50.062308, 14.50421], [50.063827, 14.504686], [50.064098, 14.504617], [50.064351, 14.504388], [50.064961, 14.503593], [50.065164, 14.503197], [50.065295, 14.502742], [50.066024, 14.49898], [50.06688, 14.496123], [50.067367, 14.494519], [50.067618, 14.493928], [50.068315, 14.492759], [50.068705, 14.492047], [50.069729, 14.489793], [50.070047, 14.489303], [50.070729, 14.488315], [50.071438, 14.487395], [50.071651, 14.48707], [50.071675, 14.48681], [50.071627, 14.486555], [50.071307, 14.485297], [50.071014, 14.481045], [50.070774, 14.477126], [50.070746, 14.476738], [50.069514, 14.470665], [50.069116, 14.468688], [50.067725, 14.462248], [50.067404, 14.460739], [50.067392, 14.460502], [50.067462, 14.460309], [50.067625, 14.460166], [50.068013, 14.45991], [50.068094, 14.459676], [50.068138, 14.458756], [50.068217, 14.458364], [50.068566, 14.457348], [50.069026, 14.455819], [50.069119, 14.454218], [50.069183, 14.453619], [50.069558, 14.45181], [50.069675, 14.451614], [50.069888, 14.451558], [50.070644, 14.451701], [50.070968, 14.451596], [50.071655, 14.451089], [50.071929, 14.450838], [50.071999, 14.450453], [50.071922, 14.447817], [50.071978, 14.44658], [50.072289, 14.443906], [50.072457, 14.443287], [50.073571, 14.440433], [50.074388, 14.438529], [50.074946, 14.437121], [50.074967, 14.435997], [50.074991, 14.435785], [50.075121, 14.435595], [50.075382, 14.435309], [50.075415, 14.435004], [50.07542, 14.432216], [50.075441, 14.431691], [50.075508, 14.430593], [50.075635, 14.42332], [50.075681, 14.42151], [50.075777, 14.420369], [50.075871, 14.419491], [50.075923, 14.419356], [50.07603, 14.419262], [50.076463, 14.419323], [50.077551, 14.419542], [50.078071, 14.419525], [50.079343, 14.419598], [50.079609, 14.419637], [50.080242, 14.419821], [50.080746, 14.419791], [50.081189, 14.419639], [50.08217, 14.419231], [50.082245, 14.419156], [50.082289, 14.419042], [50.082299, 14.418907], [50.08199, 14.417753], [50.081564, 14.416047], [50.081457, 14.415339], [50.081421, 14.414021], [50.081404, 14.413327], [50.081202, 14.406128], [50.081187, 14.404695], [50.081253, 14.404555], [50.081343, 14.404501], [50.081816, 14.404484], [50.083573, 14.404435], [50.084808, 14.404302], [50.085768, 14.404225], [50.086458, 14.404005], [50.087144, 14.40371], [50.087455, 14.403769], [50.087677, 14.403918], [50.087774, 14.404185], [50.087903, 14.404364], [50.088279, 14.404425], [50.088377, 14.404472], [50.088461, 14.404597], [50.088527, 14.40488], [50.088618, 14.406063], [50.088646, 14.406271], [50.088749, 14.406601], [50.088825, 14.406706], [50.089194, 14.407074], [50.089468, 14.407282], [50.090001, 14.407923], [50.090066, 14.408142], [50.090023, 14.409895], [50.09005, 14.410064], [50.090137, 14.410181], [50.090239, 14.410206], [50.090922, 14.409928], [50.091238, 14.409763], [50.092312, 14.409332], [50.092745, 14.409073], [50.092855, 14.408837], [50.092891, 14.408512], [50.092739, 14.406566], [50.092748, 14.406385], [50.092815, 14.406248], [50.09292, 14.40619], [50.093017, 14.406218], [50.0931, 14.406331], [50.093279, 14.407955], [50.09342, 14.408922], [50.093564, 14.40925], [50.093731, 14.409399], [50.094299, 14.409541], [50.094504, 14.409489], [50.094958, 14.409192], [50.096664, 14.408137], [50.09741, 14.40764], [50.097616, 14.407468], [50.097678, 14.407255], [50.097674, 14.407064], [50.097588, 14.406214], [50.097069, 14.40343], [50.095442, 14.398491], [50.095075, 14.397177], [50.094946, 14.396444], [50.094779, 14.394868], [50.094539, 14.392386], [50.094458, 14.392106], [50.094361, 14.392025], [50.09421, 14.392022], [50.093262, 14.392158], [50.093166, 14.392127], [50.093079, 14.392025], [50.093034, 14.391876], [50.092964, 14.391263], [50.092692, 14.389308], [50.09256, 14.389137], [50.092353, 14.389045], [50.090867, 14.388757], [50.08938, 14.387987], [50.089041, 14.387983], [50.087909, 14.388181], [50.087691, 14.388209], [50.087291, 14.388221], [50.087121, 14.388089], [50.086844, 14.387531], [50.086362, 14.385563], [50.086181, 14.384771], [50.08601, 14.384079], [50.085628, 14.382498], [50.085357, 14.380751], [50.084624, 14.376007], [50.08447, 14.375086], [50.083991, 14.372224], [50.083943, 14.371603], [50.083944, 14.370612], [50.084095, 14.367265], [50.084064, 14.366298], [50.083776, 14.364215], [50.08362, 14.36288], [50.083288, 14.359593], [50.083159, 14.358548], [50.082967, 14.357328], [50.082788, 14.356767], [50.081435, 14.35321], [50.081191, 14.352448], [50.080346, 14.349243], [50.079896, 14.347556], [50.079269, 14.345126], [50.078613, 14.34274], [50.078089, 14.340702], [50.076547, 14.334752], [50.076309, 14.333621], [50.075916, 14.331065], [50.075389, 14.326761], [50.075351, 14.32583], [50.075391, 14.324438], [50.075393, 14.324368], [50.075396, 14.324304], [50.075397, 14.324233], [50.0754, 14.324169], [50.075402, 14.324099], [50.075404, 14.324034], [50.075421, 14.323866], [50.075478, 14.323694], [50.075792, 14.323391]]],
|
||
"tram_4": [[[50.05902, 14.389478], [50.059059, 14.389533], [50.05909, 14.389593], [50.059119, 14.389673], [50.059138, 14.389751], [50.059155, 14.389827], [50.059172, 14.389938], [50.059171, 14.392075], [50.059212, 14.392419], [50.059295, 14.392711], [50.05952, 14.393249], [50.060156, 14.394495], [50.060571, 14.395468], [50.060843, 14.396255], [50.061091, 14.39743], [50.061173, 14.398011], [50.061306, 14.399178], [50.061609, 14.401], [50.061746, 14.401614], [50.061953, 14.402587], [50.062101, 14.403159], [50.06267, 14.404652], [50.062743, 14.404765], [50.062831, 14.404817], [50.062913, 14.404814], [50.063037, 14.404759], [50.06335, 14.404595], [50.063463, 14.404552], [50.063722, 14.404582], [50.063897, 14.404583], [50.064015, 14.404525], [50.064645, 14.403958], [50.064759, 14.403876], [50.065987, 14.403206], [50.068157, 14.402071], [50.068674, 14.4018], [50.068934, 14.401686], [50.069295, 14.401592], [50.069964, 14.401412], [50.071631, 14.401001], [50.071718, 14.401015], [50.071795, 14.4011], [50.071836, 14.401286], [50.071844, 14.401894], [50.071907, 14.402812], [50.07197, 14.403644], [50.072003, 14.403932], [50.072085, 14.404208], [50.072112, 14.404381], [50.072376, 14.407209], [50.072498, 14.408521], [50.073008, 14.413713], [50.073199, 14.414226], [50.073224, 14.414364], [50.073231, 14.414464], [50.073287, 14.415411], [50.073516, 14.416735], [50.073692, 14.417581], [50.073733, 14.418388], [50.073769, 14.418578], [50.07383, 14.418685], [50.07396, 14.418773], [50.075313, 14.419057], [50.075749, 14.419177], [50.075811, 14.419257], [50.075864, 14.419449], [50.075856, 14.419607], [50.075731, 14.420794], [50.075681, 14.42151], [50.075652, 14.422431], [50.07553, 14.428681], [50.075508, 14.430593], [50.075462, 14.431266], [50.075435, 14.431811], [50.07542, 14.432216], [50.075416, 14.432746], [50.075412, 14.435138], [50.075382, 14.435309], [50.075281, 14.435473], [50.075066, 14.435649], [50.074991, 14.435785], [50.074967, 14.435974], [50.074957, 14.436891], [50.074946, 14.437121], [50.074872, 14.437402], [50.074098, 14.439208], [50.073571, 14.440433], [50.073125, 14.441511], [50.072354, 14.443583], [50.072289, 14.443906], [50.071985, 14.446446], [50.071959, 14.446994], [50.071922, 14.447817], [50.071919, 14.448409], [50.071995, 14.450613], [50.071929, 14.450838], [50.071845, 14.450946], [50.071295, 14.45136], [50.070968, 14.451596], [50.07074, 14.451691], [50.07056, 14.451696], [50.069888, 14.451558], [50.069742, 14.451569], [50.069631, 14.451664], [50.069558, 14.45181], [50.069342, 14.452818], [50.069146, 14.453885], [50.069119, 14.454218], [50.069073, 14.455075], [50.068987, 14.45612], [50.068566, 14.457348], [50.068294, 14.458146], [50.068182, 14.458483], [50.068138, 14.458756], [50.068104, 14.459472], [50.068083, 14.459745], [50.068013, 14.45991], [50.06795, 14.459977], [50.067543, 14.460214], [50.067479, 14.460233], [50.067396, 14.460214], [50.067318, 14.460144], [50.067226, 14.459906], [50.06684, 14.458142], [50.066598, 14.456923], [50.066535, 14.456591], [50.066316, 14.455281], [50.066198, 14.454419], [50.066131, 14.453714], [50.066008, 14.451986], [50.06597, 14.450317], [50.065998, 14.449151], [50.066032, 14.44846], [50.066085, 14.447556], [50.06617, 14.446509], [50.066456, 14.444069], [50.066464, 14.44372], [50.066443, 14.443355], [50.066392, 14.443001], [50.066303, 14.442629], [50.065947, 14.441554], [50.065717, 14.440883], [50.065458, 14.440123], [50.065391, 14.439956], [50.06532, 14.439879], [50.065257, 14.439856], [50.065173, 14.439871], [50.064794, 14.440186], [50.064544, 14.440424], [50.064471, 14.440553], [50.064005, 14.44153], [50.063481, 14.442624], [50.063402, 14.442763], [50.063339, 14.44282], [50.06327, 14.44284], [50.063195, 14.442824], [50.063123, 14.442784], [50.063027, 14.442714], [50.062974, 14.442638], [50.062922, 14.442456], [50.062798, 14.440807], [50.062629, 14.438626], [50.062576, 14.438401], [50.062463, 14.438141], [50.062379, 14.438017], [50.062213, 14.437845], [50.061545, 14.437246], [50.061092, 14.436857], [50.060417, 14.436259], [50.060236, 14.436138], [50.060044, 14.436082], [50.057857, 14.435771], [50.057624, 14.435683], [50.057375, 14.435489], [50.057211, 14.435303], [50.05708, 14.435102], [50.056819, 14.434586], [50.056734, 14.434493], [50.056656, 14.434462], [50.056583, 14.43447], [50.056516, 14.434514], [50.056105, 14.434924], [50.054438, 14.436708], [50.054087, 14.437084], [50.053977, 14.437223], [50.053917, 14.43739], [50.053918, 14.437552], [50.053994, 14.437757], [50.054774, 14.439158], [50.055587, 14.440679], [50.055903, 14.441196], [50.056003, 14.441274], [50.056173, 14.441319], [50.056556, 14.441345], [50.056823, 14.441369], [50.056922, 14.441357], [50.056994, 14.441311], [50.057062, 14.441214], [50.05711, 14.441046], [50.057153, 14.44034], [50.05715, 14.438443], [50.057133, 14.438019], [50.0571, 14.437834]], [[50.057109, 14.437885], [50.057144, 14.438116], [50.057172, 14.439731], [50.057119, 14.440949], [50.057094, 14.441125], [50.057032, 14.441266], [50.056957, 14.441341], [50.056887, 14.441367], [50.056586, 14.441347], [50.056233, 14.441323], [50.056067, 14.441305], [50.055939, 14.44123], [50.055847, 14.441127], [50.055127, 14.439826], [50.054023, 14.437814], [50.053932, 14.437618], [50.053912, 14.437466], [50.05394, 14.437299], [50.054033, 14.437145], [50.054199, 14.436963], [50.056059, 14.43497], [50.056459, 14.434571], [50.056553, 14.434485], [50.056609, 14.434464], [50.056708, 14.434478], [50.056784, 14.434538], [50.056844, 14.434634], [50.05714, 14.435201], [50.05729, 14.4354], [50.057489, 14.435588], [50.057738, 14.435733], [50.057934, 14.435789], [50.060172, 14.436111], [50.060305, 14.436175], [50.060936, 14.436716], [50.061364, 14.437103], [50.061888, 14.437549], [50.062315, 14.437945], [50.062426, 14.43808], [50.06252, 14.438251], [50.062616, 14.438547], [50.062644, 14.438759], [50.062908, 14.442269], [50.062939, 14.44255], [50.062996, 14.442675], [50.063051, 14.442737], [50.063149, 14.442798], [50.063234, 14.442837], [50.063302, 14.442835], [50.063367, 14.442801], [50.063437, 14.442708], [50.063982, 14.441578], [50.064155, 14.441215], [50.064501, 14.440489], [50.064629, 14.440324], [50.065128, 14.439905], [50.065207, 14.43986], [50.065287, 14.439864], [50.065362, 14.439916], [50.065433, 14.440049], [50.065702, 14.440839], [50.065742, 14.440957], [50.066112, 14.442039], [50.066353, 14.442818], [50.066421, 14.443177], [50.066458, 14.443542], [50.066463, 14.443899], [50.066438, 14.444283], [50.066126, 14.446974], [50.066083, 14.447582], [50.066019, 14.448694], [50.065978, 14.449761], [50.06598, 14.451278], [50.066055, 14.452747], [50.066176, 14.454187], [50.06625, 14.454838], [50.066501, 14.456389], [50.06659, 14.456883], [50.066831, 14.458102], [50.067114, 14.459396], [50.067272, 14.460062], [50.067358, 14.460186], [50.067436, 14.460229], [50.067508, 14.460229], [50.067625, 14.460166], [50.067981, 14.45995], [50.068061, 14.45982], [50.068094, 14.459676], [50.068125, 14.459033], [50.068148, 14.458648], [50.068217, 14.458364], [50.068317, 14.45808], [50.068916, 14.456377], [50.069026, 14.455819], [50.069083, 14.454881], [50.069121, 14.454197], [50.069183, 14.453619], [50.06953, 14.451913], [50.069587, 14.451738], [50.069675, 14.451614], [50.069802, 14.451555], [50.070305, 14.451649], [50.070644, 14.451701], [50.070871, 14.451651], [50.071246, 14.451398], [50.071655, 14.451089], [50.071886, 14.450902], [50.071968, 14.450742], [50.071999, 14.450453], [50.071914, 14.448104], [50.071923, 14.447763], [50.071978, 14.44658], [50.072009, 14.446187], [50.072309, 14.443774], [50.072457, 14.443287], [50.073475, 14.440666], [50.074072, 14.439269], [50.074388, 14.438529], [50.074927, 14.437225], [50.074955, 14.437032], [50.074967, 14.435997], [50.074974, 14.435876], [50.075018, 14.435721], [50.075121, 14.435595], [50.075347, 14.43539], [50.075405, 14.435206], [50.075415, 14.435004], [50.075416, 14.432683], [50.075433, 14.431872], [50.075441, 14.431691], [50.075501, 14.430778], [50.075516, 14.430374], [50.075635, 14.42332], [50.075661, 14.422012], [50.075716, 14.420955], [50.075777, 14.420369], [50.075859, 14.419581], [50.075844, 14.419331], [50.075772, 14.419201], [50.075619, 14.419121], [50.074013, 14.418784], [50.073869, 14.418721], [50.073804, 14.418652], [50.073746, 14.418493], [50.073706, 14.417714], [50.073668, 14.41744], [50.073311, 14.415605], [50.073277, 14.415244], [50.073229, 14.414432], [50.073217, 14.414301], [50.073025, 14.413786], [50.072994, 14.413618], [50.072458, 14.408087], [50.072116, 14.40442], [50.072103, 14.404304], [50.07204, 14.404069], [50.07199, 14.403854], [50.071969, 14.403623], [50.071898, 14.402691], [50.071837, 14.401374], [50.071827, 14.401199], [50.071746, 14.401035], [50.071674, 14.401001], [50.071601, 14.401008], [50.06935, 14.401579], [50.069052, 14.40165], [50.06886, 14.401712], [50.068177, 14.402061], [50.068138, 14.402082], [50.06563, 14.403421], [50.0647, 14.403915], [50.064091, 14.404461], [50.063967, 14.404557], [50.063825, 14.404593], [50.063542, 14.404549], [50.063406, 14.404568], [50.063263, 14.404645], [50.062969, 14.404794], [50.062859, 14.404821], [50.062796, 14.404803], [50.062706, 14.404721], [50.062344, 14.403806], [50.062034, 14.402938], [50.061944, 14.402547], [50.061634, 14.401113], [50.061453, 14.400226], [50.061177, 14.398043], [50.061106, 14.397537], [50.060956, 14.396698], [50.060769, 14.395997], [50.060378, 14.394995], [50.059745, 14.393697], [50.059362, 14.392871], [50.05924, 14.392532], [50.059185, 14.392253], [50.059166, 14.391878], [50.059179, 14.389871], [50.059182, 14.389786], [50.059174, 14.389677], [50.059151, 14.389554], [50.059132, 14.38948], [50.059004, 14.389004]]],
|
||
"tram_7": [[[50.106833, 14.547254], [50.106765, 14.546916], [50.106207, 14.537565], [50.106141, 14.53671], [50.104815, 14.530842], [50.104581, 14.529835], [50.104034, 14.527431], [50.103905, 14.52632], [50.103818, 14.524668], [50.103513, 14.519439], [50.102915, 14.513458], [50.102386, 14.508316], [50.102196, 14.506277], [50.101974, 14.504072], [50.101897, 14.503223], [50.101909, 14.502956], [50.102298, 14.499599], [50.103002, 14.493254], [50.103293, 14.490428], [50.103969, 14.484261], [50.104146, 14.483065], [50.104271, 14.482717], [50.104439, 14.482338], [50.104461, 14.482123], [50.10439, 14.481861], [50.103695, 14.479822], [50.103719, 14.479625], [50.103818, 14.479465], [50.104535, 14.478884], [50.104941, 14.478526], [50.10497, 14.478252], [50.10428, 14.475847], [50.103941, 14.474764], [50.103674, 14.473922], [50.103477, 14.473492], [50.103315, 14.47335], [50.103135, 14.473348], [50.101941, 14.473514], [50.101559, 14.47349], [50.101212, 14.473391], [50.100643, 14.473053], [50.100249, 14.473165], [50.09969, 14.473169], [50.099303, 14.473207], [50.098854, 14.473389], [50.098497, 14.473651], [50.097782, 14.4744], [50.097461, 14.474669], [50.096975, 14.474967], [50.096307, 14.475287], [50.095964, 14.47536], [50.095911, 14.47536], [50.09565, 14.475335], [50.095296, 14.475193], [50.095106, 14.474942], [50.094534, 14.473917], [50.093861, 14.472461], [50.092377, 14.469118], [50.092152, 14.468835], [50.091826, 14.46859], [50.090622, 14.467864], [50.090467, 14.467861], [50.090033, 14.468071], [50.089071, 14.468579], [50.086617, 14.469828], [50.084652, 14.470607], [50.08411, 14.470824], [50.081675, 14.471787], [50.078757, 14.472934], [50.078549, 14.473024], [50.078441, 14.473175], [50.078401, 14.473393], [50.078243, 14.475207], [50.078095, 14.476434], [50.077489, 14.482584], [50.07737, 14.48379], [50.076995, 14.487593], [50.076777, 14.489137], [50.076571, 14.489249], [50.076189, 14.489369], [50.075748, 14.489585], [50.075237, 14.489901], [50.073278, 14.491128], [50.073158, 14.49112], [50.072548, 14.490545], [50.0723, 14.490276], [50.072192, 14.489963], [50.071834, 14.48763], [50.07166, 14.486703], [50.071338, 14.485446], [50.07126, 14.48496], [50.070818, 14.477856], [50.070757, 14.476855], [50.070664, 14.47628], [50.069313, 14.469686], [50.068354, 14.4652], [50.067411, 14.460777], [50.067114, 14.459396], [50.066598, 14.456923], [50.066501, 14.456389], [50.066198, 14.454419], [50.066055, 14.452747], [50.06597, 14.450317], [50.066019, 14.448694], [50.066085, 14.447556], [50.066438, 14.444283], [50.066464, 14.44372], [50.066421, 14.443177], [50.066303, 14.442629], [50.065742, 14.440957], [50.065458, 14.440123], [50.065234, 14.439506], [50.064655, 14.437764], [50.064649, 14.437437], [50.064851, 14.435662], [50.064953, 14.435127], [50.065398, 14.433909], [50.065435, 14.433579], [50.065338, 14.433215], [50.065102, 14.432743], [50.065055, 14.430031], [50.064998, 14.425009], [50.06506, 14.424554], [50.065612, 14.42345], [50.066719, 14.421916], [50.067016, 14.421622], [50.067309, 14.42142], [50.067744, 14.421132], [50.067809, 14.420916], [50.067804, 14.420554], [50.06795, 14.419966], [50.068018, 14.41941], [50.067936, 14.418464], [50.067551, 14.416123], [50.06747, 14.41535], [50.067504, 14.415183], [50.067681, 14.415028], [50.070612, 14.414419], [50.071954, 14.41415], [50.072797, 14.414021], [50.072895, 14.413976], [50.072974, 14.413834], [50.072994, 14.413618], [50.072376, 14.407209], [50.072103, 14.404304], [50.072003, 14.403932], [50.071969, 14.403623], [50.071844, 14.401894], [50.071846, 14.401024], [50.071834, 14.400588], [50.071774, 14.399429], [50.071917, 14.398436], [50.072139, 14.397697], [50.072254, 14.397193], [50.072348, 14.394847], [50.072269, 14.393288], [50.072112, 14.391419], [50.071579, 14.387206], [50.071149, 14.383677], [50.070546, 14.379147], [50.070406, 14.377834], [50.070506, 14.376418], [50.070482, 14.375667], [50.07005, 14.373754], [50.070005, 14.373403], [50.070067, 14.370847], [50.070042, 14.369615], [50.069719, 14.365498], [50.069632, 14.364119], [50.069574, 14.362099], [50.069546, 14.361284], [50.069453, 14.359338], [50.06929, 14.358166], [50.068436, 14.3535], [50.068263, 14.352221], [50.068066, 14.346666], [50.06789, 14.341457], [50.067776, 14.338264], [50.067713, 14.336521], [50.067553, 14.332015], [50.067496, 14.331346], [50.067337, 14.330491], [50.066922, 14.32913], [50.066821, 14.328585], [50.066718, 14.327705], [50.066515, 14.326982], [50.066264, 14.326441], [50.065705, 14.32531], [50.065465, 14.324664], [50.065285, 14.323934], [50.065173, 14.322964], [50.065166, 14.320853], [50.065107, 14.319869], [50.064962, 14.318921], [50.06473, 14.318009], [50.064505, 14.317366], [50.064049, 14.316393], [50.063299, 14.31491], [50.062994, 14.314039], [50.062941, 14.313591], [50.063039, 14.31317], [50.064177, 14.311104], [50.064379, 14.31055], [50.064482, 14.309952], [50.064518, 14.30853], [50.064542, 14.308218], [50.064642, 14.307821], [50.065499, 14.30628], [50.065642, 14.305887], [50.065702, 14.305446], [50.065784, 14.301353], [50.065751, 14.300577], [50.065363, 14.299482], [50.065299, 14.299217], [50.065259, 14.298948], [50.065264, 14.29871]], [[50.106833, 14.547254], [50.106765, 14.546916], [50.106207, 14.537565], [50.106141, 14.53671], [50.104815, 14.530842], [50.104581, 14.529835], [50.104034, 14.527431], [50.103905, 14.52632], [50.103818, 14.524668], [50.103513, 14.519439], [50.102915, 14.513458], [50.102386, 14.508316], [50.102196, 14.506277], [50.101974, 14.504072], [50.101897, 14.503223], [50.101909, 14.502956], [50.102298, 14.499599], [50.103002, 14.493254], [50.103293, 14.490428], [50.103969, 14.484261], [50.104146, 14.483065], [50.104271, 14.482717], [50.104439, 14.482338], [50.104461, 14.482123], [50.10439, 14.481861], [50.103695, 14.479822], [50.103719, 14.479625], [50.103818, 14.479465], [50.104535, 14.478884], [50.104941, 14.478526], [50.10497, 14.478252], [50.10428, 14.475847], [50.103941, 14.474764], [50.103674, 14.473922], [50.103477, 14.473492], [50.103315, 14.47335], [50.103135, 14.473348], [50.101941, 14.473514], [50.101559, 14.47349], [50.101212, 14.473391], [50.100643, 14.473053], [50.100249, 14.473165], [50.09969, 14.473169], [50.099303, 14.473207], [50.098854, 14.473389], [50.098497, 14.473651], [50.097782, 14.4744], [50.097461, 14.474669], [50.096975, 14.474967], [50.096307, 14.475287], [50.095964, 14.47536], [50.095911, 14.47536], [50.09565, 14.475335], [50.095296, 14.475193], [50.095106, 14.474942], [50.094534, 14.473917], [50.093861, 14.472461], [50.092377, 14.469118], [50.092152, 14.468835], [50.091826, 14.46859], [50.090622, 14.467864], [50.090467, 14.467861], [50.090033, 14.468071], [50.089071, 14.468579], [50.086617, 14.469828], [50.084652, 14.470607], [50.08411, 14.470824], [50.081675, 14.471787], [50.078757, 14.472934], [50.078549, 14.473024], [50.078441, 14.473175], [50.078401, 14.473393], [50.078243, 14.475207], [50.078095, 14.476434], [50.077489, 14.482584], [50.07737, 14.48379], [50.076995, 14.487593], [50.076777, 14.489137], [50.076571, 14.489249], [50.076189, 14.489369], [50.075748, 14.489585], [50.075237, 14.489901], [50.073278, 14.491128], [50.073158, 14.49112], [50.072548, 14.490545], [50.0723, 14.490276], [50.072192, 14.489963], [50.071834, 14.48763], [50.07166, 14.486703], [50.071338, 14.485446], [50.07126, 14.48496], [50.070818, 14.477856], [50.070757, 14.476855], [50.070664, 14.47628], [50.069313, 14.469686], [50.068354, 14.4652], [50.067411, 14.460777], [50.067114, 14.459396], [50.066598, 14.456923], [50.066501, 14.456389], [50.066198, 14.454419], [50.066055, 14.452747], [50.06597, 14.450317], [50.066019, 14.448694], [50.066085, 14.447556], [50.066438, 14.444283], [50.066464, 14.44372], [50.066421, 14.443177], [50.066303, 14.442629], [50.065742, 14.440957], [50.065458, 14.440123], [50.065234, 14.439506], [50.064655, 14.437764], [50.064649, 14.437437], [50.064851, 14.435662], [50.064953, 14.435127], [50.065398, 14.433909], [50.065435, 14.433579], [50.065338, 14.433215], [50.065102, 14.432743], [50.065055, 14.430031], [50.064998, 14.425009], [50.06506, 14.424554], [50.065612, 14.42345], [50.066719, 14.421916], [50.067016, 14.421622], [50.067309, 14.42142], [50.067744, 14.421132], [50.067809, 14.420916], [50.067804, 14.420554], [50.06795, 14.419966], [50.068018, 14.41941], [50.067936, 14.418464], [50.067551, 14.416123], [50.06747, 14.41535], [50.067504, 14.415183], [50.067681, 14.415028], [50.070612, 14.414419], [50.071954, 14.41415], [50.072797, 14.414021], [50.072895, 14.413976], [50.072974, 14.413834], [50.072994, 14.413618], [50.072376, 14.407209], [50.072103, 14.404304], [50.072003, 14.403932], [50.071969, 14.403623], [50.071844, 14.401894], [50.071846, 14.401024], [50.071834, 14.400588], [50.071774, 14.399429], [50.071917, 14.398436], [50.072139, 14.397697], [50.072254, 14.397193], [50.072348, 14.394847], [50.072269, 14.393288], [50.072112, 14.391419], [50.071579, 14.387206], [50.071149, 14.383677], [50.070546, 14.379147], [50.070406, 14.377834], [50.070506, 14.376418], [50.070482, 14.375667], [50.07005, 14.373754], [50.070005, 14.373403], [50.070067, 14.370847], [50.070042, 14.369615], [50.069719, 14.365498], [50.069632, 14.364119], [50.069574, 14.362099], [50.069546, 14.361284], [50.069453, 14.359338], [50.06929, 14.358166], [50.068436, 14.3535], [50.068263, 14.352221], [50.068066, 14.346666], [50.06789, 14.341457], [50.067776, 14.338264], [50.067713, 14.336521], [50.067553, 14.332015], [50.067496, 14.331346], [50.067337, 14.330491], [50.066922, 14.32913], [50.066821, 14.328585], [50.066718, 14.327705], [50.066515, 14.326982], [50.066264, 14.326441], [50.065705, 14.32531], [50.065465, 14.324664], [50.065285, 14.323934], [50.065173, 14.322964], [50.065166, 14.320853], [50.065107, 14.319869], [50.064962, 14.318921], [50.06473, 14.318009], [50.064505, 14.317366], [50.064049, 14.316393], [50.063299, 14.31491], [50.062994, 14.314039], [50.062941, 14.313591], [50.063039, 14.31317], [50.064177, 14.311104], [50.064379, 14.31055], [50.064482, 14.309952], [50.064518, 14.30853], [50.064542, 14.308218], [50.064642, 14.307821], [50.065499, 14.30628], [50.065642, 14.305887], [50.065702, 14.305446], [50.065784, 14.301353], [50.065751, 14.300577], [50.065363, 14.299482], [50.065299, 14.299217], [50.065259, 14.298948], [50.065264, 14.29871]]]
|
||
}
|
||
|
||
const map = L.map('map').setView([50.0718, 14.4999], 11);
|
||
|
||
// Tile-Layer je nach Theme wählen
|
||
const initialTileUrl = (document.documentElement.getAttribute('data-theme') || 'dark') === 'light'
|
||
? 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png'
|
||
: 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png';
|
||
const tileLayer = L.tileLayer(initialTileUrl, {
|
||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> © <a href="https://carto.com/attributions">CARTO</a>',
|
||
subdomains: 'abcd',
|
||
maxZoom: 19
|
||
}).addTo(map);
|
||
|
||
function switchMapTheme(newTheme) {
|
||
const url = newTheme === 'light'
|
||
? 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png'
|
||
: 'https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png';
|
||
tileLayer.setUrl(url);
|
||
}
|
||
|
||
function createIcon(emoji, color, isHotel=false) {
|
||
const size = isHotel ? 56 : 38;
|
||
const wrapperClass = isHotel ? 'custom-marker hotel-marker' : 'custom-marker';
|
||
const html = `
|
||
<div style="
|
||
background: ${color};
|
||
width: ${size}px;
|
||
height: ${size}px;
|
||
border-radius: 50% 50% 50% 0;
|
||
transform: rotate(-45deg);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border: ${isHotel ? 4 : 3}px solid ${isHotel ? '#ffd700' : 'white'};
|
||
box-shadow: ${isHotel ? '0 0 16px rgba(255,215,0,0.6), 0 4px 12px rgba(0,0,0,0.6)' : '0 3px 8px rgba(0,0,0,0.5)'};
|
||
">
|
||
<span style="transform: rotate(45deg); font-size: ${isHotel ? 28 : 19}px;">${emoji}</span>
|
||
</div>
|
||
`;
|
||
return L.divIcon({
|
||
html: html,
|
||
className: wrapperClass,
|
||
iconSize: [size, size],
|
||
iconAnchor: [size/2, size],
|
||
popupAnchor: [0, -size]
|
||
});
|
||
}
|
||
|
||
// Permanentes Label für Hotel (sichtbar ohne Klick)
|
||
function createHotelLabel() {
|
||
return L.divIcon({
|
||
html: '<div class="hotel-label">🏨 Hotel Uno · Basis</div>',
|
||
className: 'hotel-label-wrapper',
|
||
iconSize: [140, 22],
|
||
iconAnchor: [70, 56+22]
|
||
});
|
||
}
|
||
|
||
// Marker setzen mit Layer-Toggle und Hotel-Highlight
|
||
const bounds = [];
|
||
const markersByCategory = {};
|
||
let hotelMarker = null;
|
||
let routeLayer = null;
|
||
|
||
const hotelLoc = locations.find(l => l.category === 'hotel');
|
||
const otherLocations = locations.filter(l => l.category !== 'hotel');
|
||
|
||
function haversineKm(a, b) {
|
||
const R = 6371;
|
||
const dLat = (b.lat - a.lat) * Math.PI / 180;
|
||
const dLon = (b.lon - a.lon) * Math.PI / 180;
|
||
const lat1 = a.lat * Math.PI / 180;
|
||
const lat2 = b.lat * Math.PI / 180;
|
||
const x = Math.sin(dLat/2)**2 + Math.cos(lat1)*Math.cos(lat2)*Math.sin(dLon/2)**2;
|
||
return 2 * R * Math.asin(Math.sqrt(x));
|
||
}
|
||
|
||
async function drawRoute(from, to) {
|
||
if (routeLayer) { map.removeLayer(routeLayer); routeLayer = null; }
|
||
const url = `https://router.project-osrm.org/route/v1/driving/${from.lon},${from.lat};${to.lon},${to.lat}?overview=full&geometries=geojson`;
|
||
try {
|
||
const r = await fetch(url);
|
||
if (!r.ok) throw new Error('OSRM ' + r.status);
|
||
const data = await r.json();
|
||
if (!data.routes || data.routes.length === 0) throw new Error('Keine Route');
|
||
const coords = data.routes[0].geometry.coordinates.map(([lng, lat]) => [lat, lng]);
|
||
const distKm = (data.routes[0].distance / 1000).toFixed(1);
|
||
const durMin = Math.round(data.routes[0].duration / 60);
|
||
routeLayer = L.polyline(coords, {
|
||
color: '#06b6d4', weight: 5, opacity: 0.85, dashArray: '10,6',
|
||
lineCap: 'round', lineJoin: 'round'
|
||
}).addTo(map);
|
||
map.fitBounds(routeLayer.getBounds(), { padding: [80, 80] });
|
||
return { distKm, durMin, from, to };
|
||
} catch (e) {
|
||
const distKm = haversineKm(from, to).toFixed(1);
|
||
routeLayer = L.polyline([[from.lat, from.lon], [to.lat, to.lon]], {
|
||
color: '#06b6d4', weight: 4, opacity: 0.6, dashArray: '6,8'
|
||
}).addTo(map);
|
||
const durMin = Math.round(distKm * 2.5);
|
||
return { distKm, durMin, from, to, fallback: true };
|
||
}
|
||
}
|
||
|
||
function isHotelTarget(btn) {
|
||
return btn.classList.contains('route-back');
|
||
}
|
||
|
||
locations.forEach(loc => {
|
||
const isHotel = loc.category === 'hotel';
|
||
const marker = L.marker([loc.lat, loc.lon], {
|
||
icon: createIcon(loc.emoji, loc.color, isHotel),
|
||
zIndexOffset: isHotel ? 1000 : 0
|
||
}).addTo(map);
|
||
|
||
const bannerHtml = isHotel ? '<div class="hotel-banner">⭐ Unsere Basis · Hier startet & endet jeder Tag</div>' : '';
|
||
|
||
// Restaurant-Tipps pro Location
|
||
const RESTAURANTS = {"Hotel Uno (Strašnice)":[{"name":"Restaurace U Kohouta","cuisine":"Tschechisch traditionell","price":"€€","desc":"Klassische tschechische Küche, 10 Min vom Hotel. Goulash & Knödel."},{"name":"Pizza Coloseum Strašnice","cuisine":"Italienisch/Pizza","price":"€","desc":"Solide Pizza, 8 Min zu Fuß. Auch Lieferservice."}],"Endorfin (Vršovice)":[{"name":"Kavárna Kaaba","cuisine":"Café/Brunch","price":"€","desc":"Hippes Café in Vršovice, perfekt nach Escape Room."},{"name":"Pivovar U Medvídků","cuisine":"Tschechisch/Bier","price":"€€","desc":"Berühmte Hausbrauerei (Novoměstský), 15 Min mit Tram."}],"KartPlanet (Hrdlořezy)":[{"name":"Restaurace U Přístavu","cuisine":"Tschechisch","price":"€€","desc":"5 Min von KartPlanet, direkt am Wasser. Gute Knödel."}],"Level Minigolf (Národní/Máj)":[{"name":"Máj Food Court","cuisine":"Alles","price":"€","desc":"Im selben Haus, 5. OG. Burger, Asia, Pizza — schnell & günstig."},{"name":"Café Louvre","cuisine":"Café/Klassisch","price":"€€","desc":"Legendäres Wiener Kaffeehaus, 3 Min Fußweg. Atmosphäre!"}],"Bowling Ovčín (Záběhlice)":[{"name":"Restaurant im Ovčín","cuisine":"Tschechisch/International","price":"€€","desc":"Direkt vor Ort — Bowling + Essen + Trinken."}],"Mysterium (Altstadt)":[{"name":"U Fleků","cuisine":"Tschechisch/Bier","price":"€€","desc":"Älteste kontinuierlich betriebene Brauerei Prags (1499). Muss man erlebt haben."},{"name":"Lokál U Caipla","cuisine":"Tschechisch/Bier","price":"€€","desc":"Modernes Tschechisch-Restaurant, 5 Min vom Altstädter Ring. Pilsner Urquell!"}],"Prague Ranger (Vyšehrad)":[{"name":"Restaurace U Krále Václava","cuisine":"Tschechisch","price":"€€","desc":"Nahe Vyšehrad, solide Hausmannskost."}],"Beer Boat (Štefánikův most)":[{"name":"KFC","cuisine":"Fast Food","price":"€","desc":"Direkt an der Bootsstation. Praktisch für danach."},{"name":"Café Mlýnská","cuisine":"Café/Tschechisch","price":"€€","desc":"Gemütliches Restaurant auf der Kampa-Insel, 10 Min."}],"Paintball (Buďánka)":[{"name":"Restaurace Na Vinici","cuisine":"Tschechisch","price":"€€","desc":"Nähe Paintball, traditionelle Küche. Ideal für After-Paintball-Essen."}],"FunArena (Nusle)":[{"name":"Restaurace U Krále Václava","cuisine":"Tschechisch","price":"€€","desc":"Nahe Vyšehrad/Nusle, solide Hausmannskost. 10 Min Fußweg."},{"name":"Café Bar Botič","cuisine":"Café/Bistro","price":"€","desc":"Hippes Café in Nusle, perfekt für After-Axtwerfen-Drinks."}],"Mercuria (Pankrác)":[{"name":"Pankrác Food Court (DBK)","cuisine":"Alles","price":"€","desc":"Modernes Einkaufszentrum mit viel Auswahl, 10 Min Fußweg."}],"Enigma (Altstadt)":[{"name":"Choco Café","cuisine":"Café/Süß","price":"€€","desc":"Schokoladen-Spezialitäten, perfekt für Energie-Tankstelle nach dem Spiel."}]};
|
||
|
||
function restaurantKeyFor(loc) {
|
||
if (loc.category === 'hotel') return 'Hotel Uno (Strašnice)';
|
||
const a = loc.address.toLowerCase();
|
||
if (a.includes('vršovice') || a.includes('petrohradská')) return 'Endorfin (Vršovice)';
|
||
if (a.includes('hrdlořezy') || a.includes('mezitraťová')) return 'KartPlanet (Hrdlořezy)';
|
||
if (a.includes('národní') || a.includes('máj')) return 'Level Minigolf (Národní/Máj)';
|
||
if (a.includes('záběhlice')) return 'Bowling Ovčín (Záběhlice)';
|
||
if (a.includes('pařížská') || a.includes('altstädter')) return 'Mysterium (Altstadt)';
|
||
if (a.includes('vyšehrad') || a.includes('lublaňská')) return 'Prague Ranger (Vyšehrad)';
|
||
if (a.includes('štefánikův')) return 'Beer Boat (Štefánikův most)';
|
||
if (a.includes('buďánka') || a.includes('císařkou')) return 'Paintball (Buďánka)';
|
||
if (a.includes('nusle') || a.includes('bělehradská')) return 'FunArena (Nusle)';
|
||
if (a.includes('pankrác') || a.includes('budějovická')) return 'Mercuria (Pankrác)';
|
||
return 'Enigma (Altstadt)';
|
||
}
|
||
|
||
function restaurantsHtmlFor(loc) {
|
||
const key = restaurantKeyFor(loc);
|
||
const list = RESTAURANTS[key];
|
||
if (!list || list.length === 0) return '';
|
||
return `<div style="margin-top:8px;padding:8px;background:#dcfce7;border-left:3px solid #16a34a;border-radius:4px;">
|
||
<div style="font-size:11px;font-weight:700;color:#14532d;margin-bottom:4px;">🍽️ Restaurant-Tipps in der Nähe:</div>
|
||
${list.map(r => `<div style="font-size:12px;color:#14532d;margin-bottom:3px;"><strong>${r.name}</strong> <span style="color:#16a34a;font-weight:600;">${r.price}</span> <em style="color:#166534;">(${r.cuisine})</em><br><span style="color:#166534;font-size:11px;">${r.desc}</span></div>`).join('')}
|
||
</div>`;
|
||
}
|
||
|
||
let routeButtonsHtml = '';
|
||
if (isHotel) {
|
||
const sorted = otherLocations
|
||
.map(l => ({ ...l, dist: haversineKm(hotelLoc, l) }))
|
||
.sort((a, b) => a.dist - b.dist)
|
||
.slice(0, 3);
|
||
routeButtonsHtml = `<div style="margin-top:10px;border-top:1px solid #ddd;padding-top:10px;">
|
||
<div style="font-size:12px;font-weight:700;color:#1a1a1a;margin-bottom:6px;">🧭 Schnell-Routen vom Hotel:</div>
|
||
${sorted.map(l => `
|
||
<button class="route-btn" data-target-lat="${l.lat}" data-target-lon="${l.lon}" data-target-name="${l.name.replace(/"/g,'"')}" data-target-emoji="${l.emoji}"
|
||
style="display:inline-block;margin:3px 4px 3px 0;padding:5px 10px;background:#3b82f6;color:#fff;border:none;border-radius:5px;font-size:12px;cursor:pointer;font-weight:600;">
|
||
${l.emoji} ${l.name.split(' ')[0]} (${l.dist.toFixed(1)} km)
|
||
</button>`).join('')}
|
||
</div>`;
|
||
} else {
|
||
routeButtonsHtml = `<button class="route-btn route-back" data-target-lat="${hotelLoc.lat}" data-target-lon="${hotelLoc.lon}" data-target-name="${hotelLoc.name}" data-target-emoji="${hotelLoc.emoji}"
|
||
style="margin-top:8px;padding:6px 12px;background:linear-gradient(135deg,#ffd700,#ffeb3b);color:#1a1a1a;border:none;border-radius:5px;font-size:13px;cursor:pointer;font-weight:700;width:100%;">
|
||
🧭 Zurück zum Hotel (Route)
|
||
</button>`;
|
||
}
|
||
|
||
// Feature 8: "Was ist in der Nähe?" — alle Nachbarn <2km
|
||
let nearbyHtml = '';
|
||
const neighbors = (isHotel ? otherLocations : locations.filter(l => l !== loc))
|
||
.map(l => ({ ...l, dist: haversineKm(loc, l) }))
|
||
.filter(l => l.dist < 3.0 && l.dist > 0.05)
|
||
.sort((a, b) => a.dist - b.dist);
|
||
if (neighbors.length > 0) {
|
||
nearbyHtml = `<div style="margin-top:8px;padding:8px;background:#fef3c7;border-left:3px solid #f59e0b;border-radius:4px;">
|
||
<div style="font-size:11px;font-weight:700;color:#92400e;margin-bottom:4px;">📍 In der Nähe (<3 km Luftlinie):</div>
|
||
<div style="font-size:12px;color:#451a03;">${neighbors.map(n => `${n.emoji} ${n.name.split(' ')[0]} <span style="color:#92400e;">${n.dist.toFixed(2)} km</span>`).join(' · ')}</div>
|
||
</div>`;
|
||
}
|
||
|
||
const urlLink = loc.url ? `<a href="${loc.url}" target="_blank" rel="noopener">🔗 Website öffnen</a>` : '';
|
||
const popupContent = `
|
||
<div class="popup-content">
|
||
${bannerHtml}
|
||
<h3><span class="emoji-big">${loc.emoji}</span>${loc.name}</h3>
|
||
<div class="meta">📍 ${loc.address}</div>
|
||
<div class="desc">${loc.desc}</div>
|
||
${loc.price ? `<div class="price">${loc.price}</div>` : ''}
|
||
${urlLink}
|
||
${routeButtonsHtml}
|
||
${nearbyHtml}
|
||
${restaurantsHtmlFor(loc)}
|
||
</div>
|
||
`;
|
||
marker.bindPopup(popupContent, { maxWidth: 320 });
|
||
bounds.push([loc.lat, loc.lon]);
|
||
|
||
if (isHotel) {
|
||
hotelMarker = marker;
|
||
const labelMarker = L.marker([loc.lat, loc.lon], {
|
||
icon: createHotelLabel(),
|
||
interactive: false,
|
||
keyboard: false,
|
||
zIndexOffset: 999
|
||
}).addTo(map);
|
||
markersByCategory['hotel'] = [marker, labelMarker];
|
||
} else {
|
||
if (!markersByCategory[loc.category]) markersByCategory[loc.category] = [];
|
||
markersByCategory[loc.category].push(marker);
|
||
}
|
||
});
|
||
|
||
// Route-Button Click Handler
|
||
map.on('popupopen', (e) => {
|
||
const popupNode = e.popup.getElement();
|
||
if (!popupNode) return;
|
||
popupNode.querySelectorAll('.route-btn').forEach(btn => {
|
||
btn.onclick = async (ev) => {
|
||
ev.preventDefault();
|
||
const target = {
|
||
name: btn.dataset.targetName,
|
||
emoji: btn.dataset.targetEmoji,
|
||
lat: parseFloat(btn.dataset.targetLat),
|
||
lon: parseFloat(btn.dataset.targetLon)
|
||
};
|
||
const from = isHotelTarget(btn)
|
||
? otherLocations.find(l => Math.abs(l.lat - target.lat) < 0.0001 && Math.abs(l.lon - target.lon) < 0.0001) || hotelLoc
|
||
: hotelLoc;
|
||
btn.disabled = true;
|
||
btn.textContent = '⏳ Route wird berechnet...';
|
||
const result = await drawRoute(from, target);
|
||
btn.textContent = `✅ ${result.distKm} km · ca. ${result.durMin} Min mit Auto${result.fallback ? ' (Luftlinie)' : ''}`;
|
||
btn.style.background = '#10b981';
|
||
btn.onclick = null;
|
||
};
|
||
});
|
||
});
|
||
|
||
// Auto-Open Hotel-Popup nach 1.5s beim ersten Laden
|
||
setTimeout(() => {
|
||
if (hotelMarker) hotelMarker.openPopup();
|
||
}, 1500);
|
||
|
||
const lineLayers = {};
|
||
function renderLine(lineKey, color, weight, opacity) {
|
||
const shapes = LINES[lineKey];
|
||
if (!shapes || !Array.isArray(shapes)) return null;
|
||
const mainLines = [];
|
||
const shadows = [];
|
||
shapes.forEach(coords => {
|
||
const shadow = L.polyline(coords, {
|
||
color: "#000", weight: weight + 4, opacity: 0.25,
|
||
lineCap: "round", lineJoin: "round", interactive: false
|
||
}).addTo(map);
|
||
const line = L.polyline(coords, {
|
||
color: color, weight: weight, opacity: opacity,
|
||
lineCap: "round", lineJoin: "round"
|
||
}).addTo(map);
|
||
mainLines.push(line);
|
||
shadows.push(shadow);
|
||
});
|
||
const isMetro = lineKey.startsWith('metro_');
|
||
const lineNum = lineKey.split('_')[1];
|
||
const popupHtml = isMetro
|
||
? `<div class="popup-content"><h3>🚇 Metro Linie ${lineNum}</h3><div class="desc">Offizielle PID-Linienführung (Hin+Rück). Takt: 2–4 Min HVZ.</div></div>`
|
||
: `<div class="popup-content"><h3>🚋 Tram Linie ${lineNum}</h3><div class="desc">Offizielle PID-Linienführung (Hin+Rück). Takt: 5–10 Min tagsüber.</div></div>`;
|
||
if (mainLines.length > 0) mainLines[0].bindPopup(popupHtml, {className: 'tram-popup'});
|
||
lineLayers[lineKey] = { main: mainLines, shadow: shadows };
|
||
return mainLines[0];
|
||
}
|
||
function removeLine(lineKey) {
|
||
const layers = lineLayers[lineKey];
|
||
if (layers) {
|
||
(Array.isArray(layers.main) ? layers.main : [layers.main]).forEach(l => map.removeLayer(l));
|
||
(Array.isArray(layers.shadow) ? layers.shadow : [layers.shadow]).forEach(l => map.removeLayer(l));
|
||
delete lineLayers[lineKey];
|
||
}
|
||
}
|
||
function toggleLine(lineKey, visible) {
|
||
if (visible) {
|
||
const cfg = LINES_CONFIG[lineKey];
|
||
if (cfg) renderLine(lineKey, cfg.color, cfg.weight, cfg.opacity);
|
||
} else {
|
||
removeLine(lineKey);
|
||
}
|
||
}
|
||
// Initial: nur Metro-Linien rendern. Tram-Linien werden per Radio-Button einzeln ausgewählt
|
||
// (eine zur Zeit, damit man eine saubere Tram-Route von Anfang bis Ende verfolgen kann)
|
||
Object.entries(LINES_CONFIG).forEach(([key, cfg]) => {
|
||
if (key.startsWith('metro_')) {
|
||
renderLine(key, cfg.color, cfg.weight, cfg.opacity);
|
||
}
|
||
});
|
||
IMPORTANT_STOPS.forEach(stop => {
|
||
const stopMarker = L.circleMarker([stop.lat, stop.lon], {
|
||
radius: 4, fillColor: "#ffffff", color: "#1a1a1a",
|
||
weight: 2, opacity: 1, fillOpacity: 1
|
||
}).addTo(map);
|
||
const lineBadges = stop.lines.map(l => {
|
||
const isMetro = ['A','B','C'].includes(l);
|
||
const colorMap = { A: '#00A562', B: '#F8B322', C: '#CF003D' };
|
||
const bg = isMetro ? colorMap[l] : '#06b6d4';
|
||
const fg = isMetro && l === 'B' ? '#1a1a1a' : 'white';
|
||
return `<span style="display:inline-block;background:${bg};color:${fg};padding:1px 5px;border-radius:3px;font-size:10px;font-weight:700;margin-right:3px;">${l}</span>`;
|
||
}).join('');
|
||
const popupHtml = `<div class="popup-content"><h3>🚏 ${stop.name}</h3><div class="meta">Linien hier: ${lineBadges}</div><div class="desc">📍 Nähe: ${stop.near}</div><div class="desc" style="font-size:11px;color:#94a3b8;margin-top:4px;">Takt: 5–10 Min tagsüber</div></div>`;
|
||
stopMarker.bindPopup(popupHtml, {className: 'tram-popup'});
|
||
const labelMarker = L.marker([stop.lat, stop.lon], {
|
||
icon: L.divIcon({
|
||
html: `<div class="tram-stop-label">${stop.name}</div>`,
|
||
className: 'tram-stop-label-wrapper',
|
||
iconSize: null,
|
||
iconAnchor: [0, 0]
|
||
}),
|
||
interactive: false
|
||
}).addTo(map);
|
||
});
|
||
|
||
const toggleControl = L.control({ position: 'topright' });
|
||
toggleControl.onAdd = function() {
|
||
const div = L.DomUtil.create('div', 'lines-toggle');
|
||
let html = '<h4 onclick="this.parentElement.classList.toggle(\'open\')">🚇 ÖPNV<span class="toggle">▼</span></h4>';
|
||
html += '<div class="body">';
|
||
// Metro: Checkboxen (mehrere gleichzeitig)
|
||
html += '<div class="group-header">Metro</div>';
|
||
['metro_A','metro_B','metro_C'].forEach(key => {
|
||
const cfg = LINES_CONFIG[key];
|
||
const num = key.split('_')[1];
|
||
html += `<label>
|
||
<input type="checkbox" data-line="${key}" checked>
|
||
<span class="swatch" style="background:${cfg.color}"></span>
|
||
<strong>${num}</strong>
|
||
</label>`;
|
||
});
|
||
// Tram: Radio-Buttons (eine Linie zur Zeit) — verhindert Linien-Wirrwarr
|
||
html += '<div class="group-header">Tram <span style="font-size:9px;font-weight:400;text-transform:none;letter-spacing:0;color:#888;">(eine zur Zeit)</span></div>';
|
||
// "Keine" Option
|
||
html += `<label>
|
||
<input type="radio" name="tram-select" data-tram-radio value="" checked>
|
||
<span class="swatch" style="background:#555"></span>
|
||
<em style="color:#888;">keine</em>
|
||
</label>`;
|
||
// Alle Tram-Linien sortiert
|
||
Object.keys(LINES_CONFIG).filter(k => k.startsWith('tram_')).sort((a,b) => parseInt(a.split('_')[1])-parseInt(b.split('_')[1])).forEach(key => {
|
||
const cfg = LINES_CONFIG[key];
|
||
const num = key.split('_')[1];
|
||
html += `<label>
|
||
<input type="radio" name="tram-select" data-tram-radio data-line="${key}">
|
||
<span class="swatch" style="background:${cfg.color}"></span>
|
||
${num}
|
||
</label>`;
|
||
});
|
||
html += '</div>'; // Ende .body
|
||
div.innerHTML = html;
|
||
|
||
// Helper: Tram-Linie umschalten
|
||
function setTramLine(newKey) {
|
||
Object.keys(lineLayers).forEach(k => {
|
||
if (k.startsWith('tram_')) removeLine(k);
|
||
});
|
||
if (newKey) {
|
||
const cfg = LINES_CONFIG[newKey];
|
||
renderLine(newKey, cfg.color, cfg.weight, cfg.opacity);
|
||
}
|
||
}
|
||
|
||
// Metro-Checkboxen
|
||
div.addEventListener('change', (e) => {
|
||
if (e.target.dataset.line && e.target.type === 'checkbox') {
|
||
toggleLine(e.target.dataset.line, e.target.checked);
|
||
}
|
||
});
|
||
|
||
// Tram-Radios — click auf das <label> triggert die Logik zuverlässig
|
||
div.querySelectorAll('input[name="tram-select"]').forEach(radio => {
|
||
radio.addEventListener('change', () => {
|
||
setTramLine(radio.dataset.line || null);
|
||
});
|
||
// Fallback: click direkt auf das input-Element
|
||
radio.addEventListener('click', () => {
|
||
if (!radio.checked) {
|
||
radio.checked = true;
|
||
setTramLine(radio.dataset.line || null);
|
||
}
|
||
});
|
||
});
|
||
// Click + Touch auf Radios muss durchkommen — disableClickPropagation würde sie abfangen
|
||
// Stattdessen: Klicks auf inputs explizit zulassen, nur Map-Clicks blocken
|
||
L.DomEvent.disableScrollPropagation(div);
|
||
div.addEventListener('click', (e) => {
|
||
e.stopPropagation();
|
||
});
|
||
L.DomEvent.on(div, 'mousedown touchstart dblclick', L.DomEvent.stopPropagation);
|
||
return div;
|
||
};
|
||
toggleControl.addTo(map);
|
||
|
||
map.fitBounds(bounds, { padding: [80, 80] });
|
||
|
||
const legend = L.control({ position: 'bottomright' });
|
||
legend.onAdd = function() {
|
||
const div = L.DomUtil.create('div', 'legend');
|
||
div.innerHTML = `
|
||
<h4 onclick="this.parentElement.classList.toggle('open')">📍 Legende<span class="toggle">▼</span></h4>
|
||
<div class="body">
|
||
<div class="item"><span class="dot" style="background:#4fc3f7;border-color:#ffd700;"></span>🏨 <strong>Hotel Uno</strong></div>
|
||
<div class="item"><span class="dot" style="background:#e91e63"></span>🔐 Escape Room</div>
|
||
<div class="item"><span class="dot" style="background:#ff9800"></span>🏎️ KartPlanet</div>
|
||
<div class="item"><span class="dot" style="background:#66bb6a"></span>⛳ Minigolf</div>
|
||
<div class="item"><span class="dot" style="background:#ab47bc"></span>🎳 Bowling</div>
|
||
<div class="item"><span class="dot" style="background:#7e57c2"></span>👻 Geister-Tour</div>
|
||
<div class="item"><span class="dot" style="background:#5d4037"></span>🎯 Schießstand</div>
|
||
<div class="item"><span class="dot" style="background:#ffb300"></span>⛵ Beer Boat</div>
|
||
<div class="item"><span class="dot" style="background:#ef5350"></span>🎨 Paintball</div>
|
||
<div class="item"><span class="dot" style="background:#a16207"></span>🪓 Axtwerfen</div>
|
||
<div class="item"><span class="dot" style="background:#26c6da"></span>🔫 Lasertag</div>
|
||
<div class="item"><span class="dot" style="background:#ffa726"></span>🔍 Enigma</div>
|
||
<div style="margin-top:8px;padding-top:6px;border-top:1px solid var(--card-border);font-size:11px;">
|
||
🚇 Metro:
|
||
<span style="color:#00A562;font-weight:700">A</span> ·
|
||
<span style="color:#F8B322;font-weight:700">B</span> ·
|
||
<span style="color:#CF003D;font-weight:700">C</span>
|
||
🚋 Tram: Radio
|
||
</div>
|
||
</div>
|
||
`;
|
||
L.DomEvent.disableClickPropagation(div);
|
||
L.DomEvent.disableScrollPropagation(div);
|
||
return div;
|
||
};
|
||
legend.addTo(map);
|
||
|
||
// ============================================================
|
||
// 🎫 ÖPNV-TICKETS MODAL
|
||
// ============================================================
|
||
|
||
const ticketControl = L.control({ position: 'topleft' });
|
||
ticketControl.onAdd = function() {
|
||
const div = L.DomUtil.create('div', '');
|
||
div.innerHTML = '<button class="ticket-btn" id="ticketBtn">🎫 ÖPNV-Tickets</button>';
|
||
L.DomEvent.disableClickPropagation(div);
|
||
L.DomEvent.disableScrollPropagation(div);
|
||
return div;
|
||
};
|
||
ticketControl.addTo(map);
|
||
|
||
document.getElementById('ticketBtn').addEventListener('click', () => {
|
||
document.getElementById('ticketModal').classList.add('active');
|
||
});
|
||
|
||
document.getElementById('modalClose').addEventListener('click', () => {
|
||
document.getElementById('ticketModal').classList.remove('active');
|
||
});
|
||
|
||
document.getElementById('ticketModal').addEventListener('click', (e) => {
|
||
if (e.target.id === 'ticketModal') {
|
||
document.getElementById('ticketModal').classList.remove('active');
|
||
}
|
||
});
|
||
|
||
document.addEventListener('keydown', (e) => {
|
||
if (e.key === 'Escape') {
|
||
document.getElementById('ticketModal').classList.remove('active');
|
||
}
|
||
});
|
||
</script>
|
||
|
||
<!-- TICKET-MODAL HTML -->
|
||
<div class="modal-overlay" id="ticketModal">
|
||
<div class="modal">
|
||
<button class="modal-close" id="modalClose" aria-label="Schließen">✕</button>
|
||
<h2>🎫 ÖPNV-Tickets für Prag</h2>
|
||
<div class="modal-sub">Tram + Metro + Bus + Fähre · 8 Personen · 25.–26.07.2026 (2 Tage) · Bezahlung in CZK oder €</div>
|
||
|
||
<div class="gruppe-tipp">
|
||
<strong>💡 JGA-Gruppen-Tipp:</strong> Eine Person kauft für alle online (oder jeder selbst), Tickets kommen direkt aufs Handy. Vor Reise buchbar, keine Wartezeit am Automaten, kontaktlos. Bezahlung per Kreditkarte/Apple Pay.
|
||
</div>
|
||
|
||
<div class="ticket-option recommended">
|
||
<h3>🏆 Prag Visitor Pass <span class="badge">Empfehlung für JGA</span></h3>
|
||
<div class="price-row">
|
||
<span><strong>2 Tage</strong> · ca. 28 € p.P.</span>
|
||
<span><strong>3 Tage</strong> · ca. 38 € p.P.</span>
|
||
<span><strong>4 Tage</strong> · ca. 48 € p.P.</span>
|
||
<span><strong>5 Tage</strong> · ca. 60 € p.P.</span>
|
||
</div>
|
||
<ul>
|
||
<li>✅ <strong>Alle Tram/Metro/Bus/Fähre</strong> inklusive</li>
|
||
<li>✅ ~70 Top-Sehenswürdigkeiten gratis (z.B. Burg, Zoo, Geister-Touren)</li>
|
||
<li>✅ <strong>8 × 38 € (3 Tage) = 304 €</strong> · günstiger als Einzeltickets ab 4 Fahrten/Tag</li>
|
||
<li>✅ Digital aufs Handy, kein Automat nötig</li>
|
||
</ul>
|
||
<a href="https://www.praguevisitorpass.eu/" target="_blank" rel="noopener" class="btn-link green">🌐 Auf visitor.prague.eu kaufen →</a>
|
||
</div>
|
||
|
||
<div class="ticket-option prepaid">
|
||
<h3>📱 PID Lítačka App (DPP offiziell)</h3>
|
||
<div class="price-row">
|
||
<span>Einzelticket 30 Min: <strong>40 CZK</strong> (~1,60 €)</span>
|
||
<span>Einzelticket 90 Min: <strong>50 CZK</strong> (~2 €)</span>
|
||
<span>24h-Ticket: <strong>120 CZK</strong> (~5 €)</span>
|
||
<span>72h-Ticket: <strong>330 CZK</strong> (~13,50 €)</span>
|
||
</div>
|
||
<ul>
|
||
<li>✅ Jeder kauft selbst in der App · Kreditkarte/Apple Pay</li>
|
||
<li>✅ Aktiviert erst beim Einsteigen (kein Verlust)</li>
|
||
<li>✅ Ideal wenn ihr <strong>nur wenige Fahrten</strong> plant</li>
|
||
<li>ℹ️ <strong>Für 8 Pers × 3 Tage = 8 × 330 CZK = 108 €</strong> (günstiger als Visitor Pass!)</li>
|
||
</ul>
|
||
<a href="https://www.dpp.cz/en/fares/app-pid-litacka" target="_blank" rel="noopener" class="btn-link">📲 App-Infos auf dpp.cz →</a>
|
||
</div>
|
||
|
||
<div class="ticket-option basic">
|
||
<h3>📲 SMS-Ticket (schnellste Option)</h3>
|
||
<div class="price-row">
|
||
<span>Einzelticket 30 Min: <strong>40 CZK</strong> (~1,60 €)</span>
|
||
<span>Einzelticket 90 Min: <strong>50 CZK</strong> (~2 €)</span>
|
||
<span><strong>Für 8 Pers × 1 Fahrt: 320 CZK</strong> (~13 €)</span>
|
||
</div>
|
||
<ul>
|
||
<li>✅ SMS an <strong>902 06</strong> mit Text <strong>DPT40</strong> (30 Min) oder <strong>DPT50</strong> (90 Min)</li>
|
||
<li>✅ Ticket kommt sofort als SMS zurück · bei Einsteigen Kontrolleur zeigen</li>
|
||
<li>⚠️ Benötigt tschechische SIM oder Roaming · <strong>nur für 1 Fahrt</strong> sinnvoll</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="ticket-option basic">
|
||
<h3>🏧 Ticket-Automat (jede Metrostation)</h3>
|
||
<div class="price-row">
|
||
<span>24h-Ticket: <strong>120 CZK</strong> (~5 €)</span>
|
||
<span>72h-Ticket: <strong>330 CZK</strong> (~13,50 €)</span>
|
||
</div>
|
||
<ul>
|
||
<li>✅ In jeder Metrostation · Touchscreen, DE/EN/CZ</li>
|
||
<li>✅ Bezahlung: Münzen (CZK) oder Kreditkarte</li>
|
||
<li>⚠️ Kann bei großem Andrang Wartezeit geben</li>
|
||
<li>⚠️ <strong>Papier-Ticket kann verloren gehen</strong> — Personalisierung nicht vergessen!</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="gruppe-tipp">
|
||
<strong>📊 Unsere Empfehlung für eure 2 Tage:</strong><br>
|
||
• <strong>Wenn ihr viele Aktivitäten plant</strong> → <strong>Prag Visitor Pass 3 Tage (38 € p.P.)</strong>, weil viele Sehenswürdigkeiten inklusive sind<br>
|
||
• <strong>Wenn ihr nur Hotel↔Aktivität pendelt</strong> → <strong>72h-Ticket in der PID-App (13,50 € p.P.)</strong>, billigste Lösung<br>
|
||
• <strong>Spartipp:</strong> Immer <strong>vor der Reise</strong> online kaufen, vor Ort keine Wartezeit am Automaten!
|
||
</div>
|
||
|
||
<div style="text-align:center;color:#777;font-size:11px;margin-top:12px;">
|
||
Preise Stand 2024/2025 · vor Reise nochmal checken (kann sich ändern) · Quelle: dpp.cz, visitor.prague.eu
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</script>
|
||
<script>
|
||
// Theme-Toggle
|
||
const themeBtn = document.getElementById('theme-toggle');
|
||
function updateThemeIcon() {
|
||
const cur = document.documentElement.getAttribute('data-theme') || 'dark';
|
||
themeBtn.textContent = cur === 'dark' ? '☀️' : '🌙';
|
||
themeBtn.title = cur === 'dark' ? 'Light Mode aktivieren' : 'Dark Mode aktivieren';
|
||
}
|
||
updateThemeIcon();
|
||
themeBtn.addEventListener('click', () => {
|
||
const cur = document.documentElement.getAttribute('data-theme') || 'dark';
|
||
const next = cur === 'dark' ? 'light' : 'dark';
|
||
document.documentElement.setAttribute('data-theme', next);
|
||
localStorage.setItem('jga-theme', next);
|
||
updateThemeIcon();
|
||
if (typeof switchMapTheme === 'function') switchMapTheme(next);
|
||
});
|
||
</script>
|
||
<script>
|
||
// PWA Service Worker — Network-First Strategie (Updates kommen sofort durch)
|
||
if ('serviceWorker' in navigator) {
|
||
window.addEventListener('load', () => {
|
||
navigator.serviceWorker.register('./sw.js')
|
||
.then(reg => {
|
||
console.log('[PWA] SW registered:', reg.scope);
|
||
// Update-Hook: wenn ein neuer SW installiert wurde, kurz reloaden
|
||
reg.addEventListener('updatefound', () => {
|
||
const newSw = reg.installing;
|
||
if (!newSw) return;
|
||
newSw.addEventListener('statechange', () => {
|
||
if (newSw.state === 'activated' && navigator.serviceWorker.controller) {
|
||
console.log('[PWA] Neue Version aktiviert — lade automatisch neu');
|
||
window.location.reload();
|
||
}
|
||
});
|
||
});
|
||
})
|
||
.catch(err => console.warn('[PWA] SW registration failed:', err));
|
||
});
|
||
}
|
||
</script>
|
||
</body>
|
||
</html>
|