Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Skripten / Logik
  4. maps mit Streckendarstellung

NEWS

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    14
    1
    327

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    600

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    1.8k

maps mit Streckendarstellung

Geplant Angeheftet Gesperrt Verschoben Skripten / Logik
javascript
89 Beiträge 8 Kommentatoren 8.2k Aufrufe 9 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • bahnuhrB bahnuhr

    @liv-in-sky

    anbei Script und View.
    Kannst bestimmt damit was anfangen.
    Funktioniert einwandfrei.

    
    
    // Script um aus den DP vom Adapter "bosch-ebike" eine MAP zu erstellen und den Weg zu zeichnen
    // bahnuhr, 03_2024
    
    // ###############################################################################################################
    // DP "javascript.0.Geräte.Fahrrad.Touren" ändert sich
        on({id: "javascript.0.Geräte.Fahrrad.Touren"}, function() {  
            var body = getState("javascript.0.Geräte.Fahrrad.Touren").val;
            var arrTouren = []; 
            var obj = JSON.parse(body); 
            for (var x=0; x<= obj.length-1; x++) {
                var titel = obj[x].Titel; var datum = obj[x].Datum; var start = obj[x].Start; var end = obj[x].Ende; var strecke = obj[x].Strecke; 
                var fahrzeit = obj[x].Fahrzeit; var o_trittfrequenz = obj[x].o_Trittfrequenz; var max_trittfrequenz = obj[x].max_Trittfrequenz;
                var o_leistung = obj[x].o_Leistung; var max_leistung = obj[x].max_Leistung; var o_speed = obj[x].o_Speed; var max_speed = obj[x].max_Speed;
                var bergauf = obj[x].Bergauf; var bergab = obj[x].Bergab;
                arrTouren.push(datum + " _ " + strecke + " km _ " + titel); 
            }
            setState("javascript.0.Geräte.Fahrrad.Routen.Auswahl", JSON.stringify(arrTouren));
            log (arrTouren);     
        });
    
    
    // ###############################################################################################################
    // DP "javascript.0.Geräte.Fahrrad.Routen.ausgewaehlt" ändert sich
        on({id: "javascript.0.Geräte.Fahrrad.Routen.ausgewaehlt"}, function(obj) {  
            var arr = obj.state.val.split(" _ "); log (arr[0]); var Auswahl_Datum = arr[0];
            var body = JSON.parse(getState("javascript.0.Geräte.Fahrrad.Touren").val);
            for (var x=0; x<20; x++) {
                var datum = body[x].Datum; 
                if (datum == Auswahl_Datum) {
                    Datei_schreiben(x+1);
                }
            }
        });
    
    
    
    // ###############################################################################################################
    // GPS lesen und Datei html schreiben
        function Datei_schreiben(trip) {
            // Variablen
                var poly ="";       // hier werden die GPS gespeichert
                var center_gps = "50.465, 9.71";    // Mittelpunkt der Karte
                var zoom = 13                       // Zoom der Karte
                var pfad = "route"             // Dateiname - wird in vis.0 gespeichert
                var logging = true;
            // Werte der Tour einlesen
                var arrTour = [];
                var obj2 = JSON.parse(getState("javascript.0.Geräte.Fahrrad.Touren").val); 
                var titel = obj2[trip-1].Titel; var datum = obj2[trip-1].Datum; var start = obj2[trip-1].Start; var end = obj2[trip-1].Ende; var strecke = obj2[trip-1].Strecke; 
                var fahrzeit = obj2[trip-1].Fahrzeit; var o_trittfrequenz = obj2[trip-1].o_Trittfrequenz; var max_trittfrequenz = obj2[trip-1].max_Trittfrequenz;
                var o_leistung = obj2[trip-1].o_Leistung; var max_leistung = obj2[trip-1].max_Leistung; var o_speed = obj2[trip-1].o_Speed; var max_speed = obj2[trip-1].max_Speed;
                var bergauf = obj2[trip-1].Bergauf; var bergab = obj2[trip-1].Bergab;
                arrTour.push({Titel: titel, Datum: datum, Start: start, Ende: end, Strecke: strecke, Fahrzeit: fahrzeit, o_Trittfrequenz: o_trittfrequenz, max_Trittfrequenz: max_trittfrequenz, o_Leistung: o_leistung, max_Leistung: max_leistung, o_Speed: o_speed, max_Speed: max_speed, Bergauf: bergauf, Bergab: bergab}); 
                setState("javascript.0.Geräte.Fahrrad.Routen.ausgewaehlt_alles", JSON.stringify(arrTour));
            // GPS einlesen und der Variablen poly zuweisen
                if (trip < 10) trip = "0" + trip;       // DP bei den Objekten der eingelesen werden soll: bosch-ebike.0.trips.xx.details
                var obj = JSON.parse(getState("bosch-ebike.0.trips." + trip + ".details").val); 
                var end = obj.activityData.length - 1;
                for (var x=0; x<=end; x++) {
                    if (obj.activityData[x].lat > 1 && obj.activityData[x].lon > 1) {
                        poly = poly + "["+obj.activityData[x].lat+", "+obj.activityData[x].lon+"]"
                        if (x < end) poly = poly + ","
                    }
                }
                if (logging) log (poly);
            // html erzeugen und speichern in /vis.0/xxx.html
                var string = '<!DOCTYPE html>\n<html>\n<head>\n<title>Simple Leaflet Map</title>\n<meta charset="utf-8" />\n'
                string = string + '<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>\n'
                string = string + '<body>\n<div id="map" style="width: 980px; height: 530px"></div>\n<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>\n<script>\n'
                string = string + "var map = L.map('map').setView([" + center_gps + "], " + zoom + ");\n"
                string = string + "mapLink = '<a href=" + '"http://openstreetmap.org"' + ">OpenStreetMap</a>';\n"
                string = string + "L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);\n"
                string = string + 'var polyline = L.polyline([ \n' + poly + '\n], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);\n'
                string = string + '</script>\n</body>\n</html>'
                writeFile("vis.0", "/Routen/" + pfad + trip +".html", string, (error) => {
                    if (logging) log('Datei "route.html" gespeichert!');
                });
                setState("javascript.0.Geräte.Fahrrad.Routen.Datei","/vis.0/Routen/" + pfad + trip + ".html");
        }
    
    

    View:

    {
       "settings": {
           "style": {
               "background_class": "",
               "background-color": "black"
           },
           "theme": "dark-hive",
           "sizex": "1270",
           "sizey": "790",
           "gridSize": "",
           "useAsDefault": false,
           "snapType": null,
           "useBackground": false
       },
       "widgets": {
           "e00001": {
               "tpl": "tplBarNavigator",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "bPosition": "floatVertical",
                   "bWidth": 187,
                   "bHeight": 34,
                   "bValue": "",
                   "bStyleNormalHover": null,
                   "bStyleActiveHover": null,
                   "bCount": "10",
                   "buttonsText1": "Übersicht",
                   "buttonsImage1": "/vis.0/main/img/faviconEdit.png",
                   "buttonsOption1": "Titel",
                   "buttonsText2": "Etagen",
                   "buttonsImage2": "/vis.0/main/img/mfd/control_building_s_eg.png",
                   "buttonsOption2": "Erdgeschoss",
                   "buttonsText3": "Außenbereich",
                   "buttonsImage3": "/vis.0/main/img/mfd/weather_wind.png",
                   "buttonsOption3": "Aussenbereich",
                   "buttonsText4": "Maps",
                   "buttonsImage4": "/vis.0/main/img/boincmanager.png",
                   "buttonsOption4": "Maps_Dieter",
                   "buttonsText5": "Multimedia",
                   "buttonsImage5": "/vis.0/main/img/yamaha.jpg",
                   "buttonsOption5": "Yamaha",
                   "buttonsText6": "Video / Webcam",
                   "buttonsImage6": "/vis.0/main/img/camera.png",
                   "buttonsOption6": "Video",
                   "buttonsText7": "Geräte / Energie",
                   "buttonsImage7": "/vis.0/main/img/disconnect.png",
                   "buttonsOption7": "Geraete",
                   "buttonsText8": "Jalousie / Licht",
                   "buttonsImage8": "/vis.0/main/img/devices/50/61_hm-lc-bl1-pb-fm_thumb.png",
                   "buttonsOption8": "Schalter",
                   "buttonsText9": "Heizung",
                   "buttonsImage9": "/vis.0/main/img/devices/50/61_hm-lc-bl1-pb-fm_thumb.png",
                   "buttonsOption9": "Schalter2",
                   "buttonsText10": "System",
                   "buttonsImage10": "/vis.0/main/img/mfd/measure_power_meter.png",
                   "buttonsOption10": "System",
                   "buttonsText11": "",
                   "buttonsImage11": "",
                   "buttonsOption11": "Schalter2",
                   "buttonsText12": "",
                   "buttonsImage12": "",
                   "buttonsOption12": "System",
                   "buttonsText13": "",
                   "buttonsImage13": "",
                   "buttonsOption13": "Schalter2",
                   "bOnlyOneSelected": false,
                   "bTheme": "",
                   "alwaysOpened": false,
                   "g_css_background": false,
                   "g_gestures": false,
                   "g_signals": false,
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "g_effects": false,
                   "g_css_shadow_padding": true,
                   "g_css_border": false,
                   "g_css_font_text": true,
                   "bShowEffect": "show",
                   "bShowEffectMs": "100",
                   "bHideEffect": "show",
                   "bHideEffectMs": "100",
                   "views": [
                       "Aussenbereich",
                       "Code",
                       "Corona",
                       "DWD",
                       "DWD2",
                       "DWD3",
                       "Google",
                       "Krippe",
                       "Maps_Bettina",
                       "Maps_Dieter",
                       "Maps_Philipp",
                       "Nachrichten",
                       "Pool",
                       "Pool_Chemie",
                       "Schalter",
                       "Schalter2",
                       "System",
                       "System2",
                       "Tanks",
                       "Tankstelle2",
                       "Telefon",
                       "Telefon2",
                       "Titel",
                       "Uhr",
                       "Wetter",
                       "Wohnzimmer",
                       "Yamaha",
                       "Yamaha2",
                       "Yamaha3"
                   ],
                   "g_style": false,
                   "g_button_options": true,
                   "bSpace": "11",
                   "bRadius": "8",
                   "bOffset": "0",
                   "bTextAlign": "center",
                   "bImageAlign": "left",
                   "bLayout": "auto",
                   "imagePaddingLeft": "17",
                   "imagePaddingTop": "10",
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0,
                   "buttonsImage14": "/vis.0/main/img/devices/50/61_hm-lc-bl1-pb-fm_thumb.png",
                   "buttonsText14": "Heizung",
                   "buttonsOption14": "Schalter2",
                   "g_visibility": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide"
               },
               "style": {
                   "left": "20px",
                   "top": "270px",
                   "height": "505px",
                   "width": "190px",
                   "z-index": "2",
                   "position": "",
                   "opacity": "",
                   "font-family": "Alegreya-Italic",
                   "font-size": "12px",
                   "line-height": "6px",
                   "color": "",
                   "text-align": "",
                   "font-style": "normal"
               },
               "widgetSet": "bars"
           },
           "e00002": {
               "tpl": "tplTwSimpleDate",
               "data": {
                   "g_fixed": true,
                   "g_visibility": false,
                   "g_css_font_text": true,
                   "g_css_background": false,
                   "g_css_shadow_padding": false,
                   "g_css_border": false,
                   "g_gestures": false,
                   "g_signals": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "prependZero": "true",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "showWeekDay": true,
                   "views": [
                       "Aussenbereich",
                       "Code",
                       "Corona",
                       "DWD",
                       "DWD2",
                       "DWD3",
                       "Energie",
                       "Erdgeschoss",
                       "Garage",
                       "Geraete",
                       "Geraete2",
                       "Google",
                       "Haustuer",
                       "Heizungsanlage",
                       "Kellergeschoss",
                       "Krippe",
                       "Maps_Bettina",
                       "Maps_Dieter",
                       "Maps_Philipp",
                       "Nachrichten",
                       "Obergeschoss",
                       "Schalter",
                       "Schalter2",
                       "Strom",
                       "System2",
                       "Tanks",
                       "Tankstelle",
                       "Telefon",
                       "Telefon2",
                       "Titel",
                       "Uhr",
                       "Video",
                       "Wasser",
                       "Webcam",
                       "Wetter",
                       "Wohnzimmer",
                       "Wohnzimmer2",
                       "Yamaha",
                       "Yamaha2",
                       "Yamaha3"
                   ],
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "20px",
                   "top": "17px",
                   "width": "200px",
                   "height": "35px",
                   "z-index": "1",
                   "color": "rgb(255, 255, 255)",
                   "font-size": "16px",
                   "letter-spacing": "0px",
                   "line-height": "",
                   "font-family": "sans-serif"
               },
               "widgetSet": "timeandweather"
           },
           "e00003": {
               "tpl": "tplTwSimpleClock",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "hideSeconds": true,
                   "blink": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "views": [
                       "Aussenbereich",
                       "Code",
                       "Corona",
                       "DWD",
                       "DWD2",
                       "DWD3",
                       "Energie",
                       "Erdgeschoss",
                       "Garage",
                       "Geraete",
                       "Geraete2",
                       "Google",
                       "Haustuer",
                       "Heizungsanlage",
                       "Kellergeschoss",
                       "Krippe",
                       "Maps_Bettina",
                       "Maps_Dieter",
                       "Maps_Philipp",
                       "Nachrichten",
                       "Obergeschoss",
                       "Schalter",
                       "Schalter2",
                       "Strom",
                       "System2",
                       "Tanks",
                       "Tankstelle",
                       "Telefon",
                       "Telefon2",
                       "Titel",
                       "Uhr",
                       "Video",
                       "Wasser",
                       "Webcam",
                       "Wetter",
                       "Wohnzimmer",
                       "Wohnzimmer2",
                       "Yamaha",
                       "Yamaha2",
                       "Yamaha3"
                   ],
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "20px",
                   "top": "47px",
                   "color": "rgb(255, 255, 255)",
                   "font-size": "40px",
                   "z-index": "1",
                   "height": "42px",
                   "line-height": "normal",
                   "font-family": "sans-serif",
                   "letter-spacing": "2px",
                   "width": "130px"
               },
               "widgetSet": "timeandweather"
           },
           "e00004": {
               "tpl": "tplImage",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "src": "/vis.0/main/img/IMG_3343 - Kopie.jpg",
                   "refreshOnWakeUp": false,
                   "refreshOnViewChange": false,
                   "refreshInterval": "0",
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "views": [
                       "Aussenbereich",
                       "Code",
                       "Corona",
                       "DWD",
                       "DWD2",
                       "DWD3",
                       "Energie",
                       "Erdgeschoss",
                       "Garage",
                       "Geraete",
                       "Geraete2",
                       "Google",
                       "Haustuer",
                       "Heizungsanlage",
                       "Kellergeschoss",
                       "Krippe",
                       "Maps_Bettina",
                       "Maps_Dieter",
                       "Maps_Philipp",
                       "Nachrichten",
                       "Obergeschoss",
                       "Schalter",
                       "Schalter2",
                       "Strom",
                       "System2",
                       "Tanks",
                       "Tankstelle",
                       "Telefon",
                       "Telefon2",
                       "Titel",
                       "Uhr",
                       "Video",
                       "Wasser",
                       "Webcam",
                       "Wetter",
                       "Wohnzimmer",
                       "Wohnzimmer2",
                       "Yamaha",
                       "Yamaha2",
                       "Yamaha3"
                   ],
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "20px",
                   "top": "110px",
                   "width": "189px",
                   "height": "132px",
                   "z-index": "2"
               },
               "widgetSet": "basic"
           },
           "e00005": {
               "tpl": "tplHtml",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "views": [
                       "Aussenbereich",
                       "Code",
                       "Corona",
                       "DWD",
                       "DWD2",
                       "DWD3",
                       "Energie",
                       "Erdgeschoss",
                       "Garage",
                       "Geraete",
                       "Geraete2",
                       "Google",
                       "Haustuer",
                       "Heizungsanlage",
                       "Kellergeschoss",
                       "Krippe",
                       "Maps_Bettina",
                       "Maps_Dieter",
                       "Maps_Philipp",
                       "Nachrichten",
                       "Obergeschoss",
                       "Schalter",
                       "Schalter2",
                       "Strom",
                       "System2",
                       "Tanks",
                       "Tankstelle",
                       "Telefon",
                       "Telefon2",
                       "Titel",
                       "Uhr",
                       "Video",
                       "Wasser",
                       "Webcam",
                       "Wetter",
                       "Wohnzimmer",
                       "Wohnzimmer2",
                       "Yamaha",
                       "Yamaha2",
                       "Yamaha3"
                   ],
                   "refreshInterval": "0",
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "10px",
                   "top": "10px",
                   "border-radius": "6px",
                   "padding": "3px",
                   "color": "rgb(255, 255, 255)",
                   "background": "rgba(0, 0, 0, 0) none repeat scroll 0% 0%",
                   "border": "1px solid rgb(170, 170, 170)",
                   "font": "normal normal 20px/normal Arial",
                   "width": "200px",
                   "height": "230px",
                   "border-color": "rgb(170, 170, 170)",
                   "border-style": "solid",
                   "border-width": "2px",
                   "z-index": "0"
               },
               "widgetSet": "basic"
           },
           "e00006": {
               "tpl": "tplHtml",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "refreshInterval": "0",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "views": [
                       "Aussenbereich",
                       "Code",
                       "Corona",
                       "DWD",
                       "DWD2",
                       "DWD3",
                       "Energie",
                       "Erdgeschoss",
                       "Garage",
                       "Geraete",
                       "Geraete2",
                       "Google",
                       "Haustuer",
                       "Heizungsanlage",
                       "Kellergeschoss",
                       "Krippe",
                       "Maps_Bettina",
                       "Maps_Dieter",
                       "Maps_Philipp",
                       "Nachrichten",
                       "Obergeschoss",
                       "Schalter",
                       "Schalter2",
                       "Strom",
                       "System2",
                       "Tanks",
                       "Tankstelle",
                       "Telefon",
                       "Telefon2",
                       "Titel",
                       "Uhr",
                       "Video",
                       "Wasser",
                       "Webcam",
                       "Wetter",
                       "Wohnzimmer",
                       "Wohnzimmer2",
                       "Yamaha",
                       "Yamaha2",
                       "Yamaha3"
                   ],
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "10px",
                   "top": "260px",
                   "border-radius": "6px",
                   "padding": "3px",
                   "color": "rgb(255, 255, 255)",
                   "background": "rgba(0, 0, 0, 0) none repeat scroll 0% 0%",
                   "border": "1px solid rgb(170, 170, 170)",
                   "font": "normal normal 20px/normal Arial",
                   "width": "200px",
                   "height": "520px",
                   "border-color": "rgb(170, 170, 170)",
                   "border-style": "solid",
                   "border-width": "2px",
                   "z-index": "0"
               },
               "widgetSet": "basic"
           },
           "e00007": {
               "tpl": "tplHtml",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "refreshInterval": "0",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "230px",
                   "top": "10px",
                   "border-radius": "6px",
                   "padding": "3px",
                   "color": "rgb(255, 255, 255)",
                   "background": "rgba(0, 0, 0, 0) none repeat scroll 0% 0%",
                   "border": "1px solid rgb(170, 170, 170)",
                   "font": "normal normal 20px/normal Arial",
                   "width": "1030px",
                   "height": "770px",
                   "border-color": "rgb(170, 170, 170)",
                   "border-style": "solid",
                   "border-width": "2px",
                   "z-index": "0"
               },
               "widgetSet": "basic"
           },
           "e00008": {
               "tpl": "tplHtml",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "html": "E-Bike - Tour:",
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "refreshInterval": "0",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "views": [
                       "DWD2",
                       "DWD3"
                   ],
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0
               },
               "style": {
                   "left": "402px",
                   "top": "26px",
                   "width": "220px",
                   "height": "42px",
                   "color": "rgb(255, 255, 255)",
                   "z-index": "2",
                   "font-size": "40px",
                   "font-family": "Alegreya-Italic",
                   "line-height": "32px"
               },
               "widgetSet": "basic"
           },
           "e00009": {
               "tpl": "tplBarNavigator",
               "data": {
                   "hm_id": 65535,
                   "digits": "",
                   "factor": 1,
                   "min": 0,
                   "max": 1,
                   "step": 0.01,
                   "bPosition": "floatHorizontal",
                   "bWidth": 80,
                   "bHeight": 46,
                   "bSpace": 5,
                   "bRadius": 5,
                   "bOffset": 0,
                   "bTextAlign": "center",
                   "bImageAlign": "right",
                   "bValue": "",
                   "bShowEffect": "show",
                   "bHideEffect": "show",
                   "bShowEffectMs": 100,
                   "bHideEffectMs": 100,
                   "bStyleNormal": "bar-button-base-on",
                   "bStyleNormalHover": null,
                   "bStyleActive": "bar-button-nice-blue",
                   "bStyleActiveHover": null,
                   "bCount": "1",
                   "buttonsText1": "Fahrrad",
                   "buttonsImage1": "",
                   "buttonsOption1": "Fahrrad",
                   "buttonsText2": "Bettina",
                   "buttonsImage2": "",
                   "buttonsOption2": "Maps_Bettina",
                   "bOnlyOneSelected": false,
                   "bTheme": "",
                   "bLayout": "fixed",
                   "imagePaddingLeft": "10",
                   "imagePaddingTop": "2",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "buttonsText3": "Philipp",
                   "buttonsOption3": "Maps_Philipp",
                   "views": [
                       "Maps_Bettina",
                       "Maps_Philipp"
                   ],
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0,
                   "g_visibility": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "buttonsText4": "BMW",
                   "buttonsOption4": "BMW",
                   "buttonsText5": "Fahrrad",
                   "buttonsOption5": "Fahrrad"
               },
               "style": {
                   "left": "260px",
                   "top": "25px",
                   "font-size": "16px",
                   "border-width": "0px",
                   "border-style": "solid",
                   "border-color": "rgb(170, 170, 170)",
                   "height": "25px",
                   "width": "100px",
                   "z-index": "6",
                   "letter-spacing": "0px",
                   "color": "black"
               },
               "widgetSet": "bars"
           },
           "e00010": {
               "tpl": "tplJSONTemplate2",
               "data": {
                   "g_fixed": false,
                   "g_visibility": false,
                   "g_css_font_text": true,
                   "g_css_background": false,
                   "g_css_shadow_padding": false,
                   "g_css_border": false,
                   "g_gestures": false,
                   "g_signals": false,
                   "g_last_change": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "rss_dpCount": "1",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0,
                   "json_oid": "javascript.0.Geräte.Fahrrad.Routen.Auswahl",
                   "json_template": "<% \n    var selectid=\"mydropdown\"; \n    var dp_write = \"javascript.0.Geräte.Fahrrad.Routen.ausgewaehlt\";\n%>\n<script>\ndebugger;\n    var selectid=\"<%- selectid %>\";\n    var dp_write=\"<%- dp_write %>\";\n    \n    function writeDP(el) {\n        if (el.selectedOptions[0].text) vis.setValue(dp_write,el.selectedOptions[0].text);\n    }\n\n</script>\n<style>\n#mydropdown {\n    color:rgb(255,255,255);\n    background:black;\n    font-size:24px;\n}\n</style>\n</style><select id=\"<%- selectid %>\" name=\"<%- selectid %>\" size=\"1\" onchange=\"javascript:writeDP(this)\" >\n<% debugger; %>\n<% for (var i = 0; i<data.length;i++) { %>\n  <option <%- ((dp[dp_write]==data[i]) ? \"selected\":\"\") %>><%- data[i] %></option>\n<% } %>\n</select>",
                   "rss_dp1": "javascript.0.Geräte.Fahrrad.Routen.ausgewaehlt"
               },
               "style": {
                   "left": "656px",
                   "top": "30px",
                   "width": "600px",
                   "height": "35px",
                   "font-size": "",
                   "z-index": "1"
               },
               "widgetSet": "rssfeed"
           },
           "e00011": {
               "tpl": "tplIFrame",
               "data": {
                   "g_fixed": false,
                   "g_visibility": false,
                   "g_css_font_text": false,
                   "g_css_background": false,
                   "g_css_shadow_padding": false,
                   "g_css_border": false,
                   "g_gestures": false,
                   "g_signals": false,
                   "g_last_change": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "refreshInterval": "0",
                   "seamless": false,
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0,
                   "src": "{javascript.0.Geräte.Fahrrad.Routen.Datei}",
                   "scrollY": false,
                   "scrollX": false,
                   "noSandbox": false,
                   "refreshOnWakeUp": true,
                   "refreshOnViewChange": true
               },
               "style": {
                   "left": "257px",
                   "top": "222px",
                   "width": "1000px",
                   "height": "555px",
                   "z-index": "5",
                   "overflow-x": "hidden",
                   "overflow-y": "hidden"
               },
               "widgetSet": "basic"
           },
           "e00012": {
               "tpl": "i-vis-jsontable",
               "data": {
                   "g_fixed": false,
                   "g_visibility": false,
                   "g_css_font_text": true,
                   "g_css_background": false,
                   "g_css_shadow_padding": false,
                   "g_css_border": false,
                   "g_gestures": false,
                   "g_signals": false,
                   "g_last_change": false,
                   "visibility-cond": "==",
                   "visibility-val": 1,
                   "visibility-groups-action": "hide",
                   "iTblRowLimit": "1",
                   "iTableRefreshRate": "0",
                   "iColCount": "14",
                   "iColShow1": "true",
                   "iTblTextAlign1": "left",
                   "iTblCellFormat1": "normal",
                   "iTblCellImageSize1": "200",
                   "iTblCellBooleanCheckbox1": "false",
                   "iTblCellBooleanColorFalse1": "#ff0000",
                   "iTblCellBooleanColorTrue1": "#00ff00",
                   "iTblCellNumberDecimals1": "2",
                   "iTblCellNumberDecimalSeperator1": ".",
                   "iTblCellNumberThousandSeperator1": ",",
                   "iTblCellThresholdsDp1": "",
                   "iTblCellThresholdsText1": "",
                   "iOpacityAll": "1",
                   "iTblRowEvenColor": "#f2eeee",
                   "iTblRowUnevenColor": "#d2cbcb",
                   "iTblHeaderColor": "#908484",
                   "iRowSpacing": "7",
                   "iTblRowEvenTextColor": "#2c42e8",
                   "iTblRowUnevenTextColor": "#2c42e8",
                   "iTblHeaderTextColor": "#FFFFFF",
                   "iBorderSize": "1",
                   "iBorderStyleLeft": "groove",
                   "iBorderStyleRight": "groove",
                   "iBorderStyleUp": "groove",
                   "iBorderStyleDown": "groove",
                   "iBorderColor": "#ffffff",
                   "signals-cond-0": "==",
                   "signals-val-0": true,
                   "signals-icon-0": "/vis/signals/lowbattery.png",
                   "signals-icon-size-0": 0,
                   "signals-blink-0": false,
                   "signals-horz-0": 0,
                   "signals-vert-0": 0,
                   "signals-hide-edit-0": false,
                   "signals-cond-1": "==",
                   "signals-val-1": true,
                   "signals-icon-1": "/vis/signals/lowbattery.png",
                   "signals-icon-size-1": 0,
                   "signals-blink-1": false,
                   "signals-horz-1": 0,
                   "signals-vert-1": 0,
                   "signals-hide-edit-1": false,
                   "signals-cond-2": "==",
                   "signals-val-2": true,
                   "signals-icon-2": "/vis/signals/lowbattery.png",
                   "signals-icon-size-2": 0,
                   "signals-blink-2": false,
                   "signals-horz-2": 0,
                   "signals-vert-2": 0,
                   "signals-hide-edit-2": false,
                   "lc-type": "last-change",
                   "lc-is-interval": true,
                   "lc-is-moment": false,
                   "lc-format": "",
                   "lc-position-vert": "top",
                   "lc-position-horz": "right",
                   "lc-offset-vert": 0,
                   "lc-offset-horz": 0,
                   "lc-font-size": "12px",
                   "lc-font-family": "",
                   "lc-font-style": "",
                   "lc-bkg-color": "",
                   "lc-color": "",
                   "lc-border-width": "0",
                   "lc-border-style": "",
                   "lc-border-color": "",
                   "lc-border-radius": 10,
                   "lc-zindex": 0,
                   "iColShow2": true,
                   "iTblTextAlign2": "center",
                   "iTblCellFormat2": "normal",
                   "iTblCellImageSize2": "200",
                   "iTblCellBooleanCheckbox2": "false",
                   "iTblCellBooleanColorFalse2": "#ff0000",
                   "iTblCellBooleanColorTrue2": "#00ff00",
                   "iTblCellNumberDecimals2": "2",
                   "iTblCellNumberDecimalSeperator2": ".",
                   "iTblCellNumberThousandSeperator2": ",",
                   "iTblCellThresholdsDp2": "",
                   "iTblCellThresholdsText2": "",
                   "iColShow3": "true",
                   "iTblTextAlign3": "center",
                   "iTblCellFormat3": "normal",
                   "iTblCellImageSize3": "200",
                   "iTblCellBooleanCheckbox3": "false",
                   "iTblCellBooleanColorFalse3": "#ff0000",
                   "iTblCellBooleanColorTrue3": "#00ff00",
                   "iTblCellNumberDecimals3": "2",
                   "iTblCellNumberDecimalSeperator3": ".",
                   "iTblCellNumberThousandSeperator3": ",",
                   "iTblCellThresholdsDp3": "",
                   "iTblCellThresholdsText3": "",
                   "iColShow4": true,
                   "iTblTextAlign4": "center",
                   "iTblCellFormat4": "normal",
                   "iTblCellImageSize4": "200",
                   "iTblCellBooleanCheckbox4": "false",
                   "iTblCellBooleanColorFalse4": "#ff0000",
                   "iTblCellBooleanColorTrue4": "#00ff00",
                   "iTblCellNumberDecimals4": "2",
                   "iTblCellNumberDecimalSeperator4": ".",
                   "iTblCellNumberThousandSeperator4": ",",
                   "iTblCellThresholdsDp4": "",
                   "iTblCellThresholdsText4": "",
                   "oid": "javascript.0.Geräte.Fahrrad.Routen.ausgewaehlt_alles",
                   "iTblShowHead": true,
                   "iTblFixedHead": true,
                   "iColName1": "<p style=\"line-height:18px; text-align:left; font-size:16px;font-weight:normal\">Titel",
                   "iColWidth1": "",
                   "iColPreText1": "",
                   "iColAttr1": "",
                   "iBorderRemoveDouble": true,
                   "iColName2": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Datum",
                   "iColName3": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Start",
                   "iColName4": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Ende",
                   "iTblSortOrder": "asc",
                   "iTblHeadTextAlign1": "left",
                   "iTblHeadTextAlign2": "center",
                   "iTblHeadTextAlign3": "center",
                   "iTblHeadTextAlign4": "center",
                   "iColShow5": "true",
                   "iTblHeadTextAlign5": "center",
                   "iTblTextAlign5": "center",
                   "iTblCellFormat5": "normal",
                   "iTblCellImageSize5": "200",
                   "iTblCellBooleanCheckbox5": "false",
                   "iTblCellBooleanColorFalse5": "#ff0000",
                   "iTblCellBooleanColorTrue5": "#00ff00",
                   "iTblCellNumberDecimals5": "2",
                   "iTblCellNumberDecimalSeperator5": ".",
                   "iTblCellNumberThousandSeperator5": ",",
                   "iTblCellThresholdsDp5": "",
                   "iTblCellThresholdsText5": "",
                   "iColName5": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Strecke<br/>(in km)",
                   "iColShow6": true,
                   "iTblHeadTextAlign6": "center",
                   "iTblTextAlign6": "center",
                   "iTblCellFormat6": "normal",
                   "iTblCellImageSize6": "200",
                   "iTblCellBooleanCheckbox6": "false",
                   "iTblCellBooleanColorFalse6": "#ff0000",
                   "iTblCellBooleanColorTrue6": "#00ff00",
                   "iTblCellNumberDecimals6": "2",
                   "iTblCellNumberDecimalSeperator6": ".",
                   "iTblCellNumberThousandSeperator6": ",",
                   "iTblCellThresholdsDp6": "",
                   "iTblCellThresholdsText6": "",
                   "iColShow8": false,
                   "iTblHeadTextAlign8": "center",
                   "iTblTextAlign8": "center",
                   "iTblCellFormat8": "normal",
                   "iTblCellImageSize8": "200",
                   "iTblCellBooleanCheckbox8": "false",
                   "iTblCellBooleanColorFalse8": "#ff0000",
                   "iTblCellBooleanColorTrue8": "#00ff00",
                   "iTblCellNumberDecimals8": "2",
                   "iTblCellNumberDecimalSeperator8": ".",
                   "iTblCellNumberThousandSeperator8": ",",
                   "iTblCellThresholdsDp8": "",
                   "iTblCellThresholdsText8": "",
                   "iColShow9": true,
                   "iTblHeadTextAlign9": "center",
                   "iTblTextAlign9": "center",
                   "iTblCellFormat9": "normal",
                   "iTblCellImageSize9": "200",
                   "iTblCellBooleanCheckbox9": "false",
                   "iTblCellBooleanColorFalse9": "#ff0000",
                   "iTblCellBooleanColorTrue9": "#00ff00",
                   "iTblCellNumberDecimals9": "2",
                   "iTblCellNumberDecimalSeperator9": ".",
                   "iTblCellNumberThousandSeperator9": ",",
                   "iTblCellThresholdsDp9": "",
                   "iTblCellThresholdsText9": "",
                   "iColShow10": false,
                   "iTblHeadTextAlign10": "center",
                   "iTblTextAlign10": "center",
                   "iTblCellFormat10": "normal",
                   "iTblCellImageSize10": "200",
                   "iTblCellBooleanCheckbox10": "false",
                   "iTblCellBooleanColorFalse10": "#ff0000",
                   "iTblCellBooleanColorTrue10": "#00ff00",
                   "iTblCellNumberDecimals10": "2",
                   "iTblCellNumberDecimalSeperator10": ".",
                   "iTblCellNumberThousandSeperator10": ",",
                   "iTblCellThresholdsDp10": "",
                   "iTblCellThresholdsText10": "",
                   "iColShow11": true,
                   "iTblHeadTextAlign11": "center",
                   "iTblTextAlign11": "center",
                   "iTblCellFormat11": "normal",
                   "iTblCellImageSize11": "200",
                   "iTblCellBooleanCheckbox11": "false",
                   "iTblCellBooleanColorFalse11": "#ff0000",
                   "iTblCellBooleanColorTrue11": "#00ff00",
                   "iTblCellNumberDecimals11": "2",
                   "iTblCellNumberDecimalSeperator11": ".",
                   "iTblCellNumberThousandSeperator11": ",",
                   "iTblCellThresholdsDp11": "",
                   "iTblCellThresholdsText11": "",
                   "iColShow12": true,
                   "iTblHeadTextAlign12": "center",
                   "iTblTextAlign12": "center",
                   "iTblCellFormat12": "normal",
                   "iTblCellImageSize12": "200",
                   "iTblCellBooleanCheckbox12": "false",
                   "iTblCellBooleanColorFalse12": "#ff0000",
                   "iTblCellBooleanColorTrue12": "#00ff00",
                   "iTblCellNumberDecimals12": "2",
                   "iTblCellNumberDecimalSeperator12": ".",
                   "iTblCellNumberThousandSeperator12": ",",
                   "iTblCellThresholdsDp12": "",
                   "iTblCellThresholdsText12": "",
                   "iColShow13": "true",
                   "iTblHeadTextAlign13": "center",
                   "iTblTextAlign13": "center",
                   "iTblCellFormat13": "normal",
                   "iTblCellImageSize13": "200",
                   "iTblCellBooleanCheckbox13": "false",
                   "iTblCellBooleanColorFalse13": "#ff0000",
                   "iTblCellBooleanColorTrue13": "#00ff00",
                   "iTblCellNumberDecimals13": "2",
                   "iTblCellNumberDecimalSeperator13": ".",
                   "iTblCellNumberThousandSeperator13": ",",
                   "iTblCellThresholdsDp13": "",
                   "iTblCellThresholdsText13": "",
                   "iColShow14": "true",
                   "iTblHeadTextAlign14": "center",
                   "iTblTextAlign14": "center",
                   "iTblCellFormat14": "normal",
                   "iTblCellImageSize14": "200",
                   "iTblCellBooleanCheckbox14": "false",
                   "iTblCellBooleanColorFalse14": "#ff0000",
                   "iTblCellBooleanColorTrue14": "#00ff00",
                   "iTblCellNumberDecimals14": "2",
                   "iTblCellNumberDecimalSeperator14": ".",
                   "iTblCellNumberThousandSeperator14": ",",
                   "iTblCellThresholdsDp14": "",
                   "iTblCellThresholdsText14": "",
                   "iColWidth6": "",
                   "iColPreText6": "",
                   "iColName6": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Fahrzeit",
                   "iColAttr6": "",
                   "iTblCellPlaceholder6": "",
                   "iColWidth3": "10",
                   "g_iTableCol_§6": true,
                   "iColShow7": true,
                   "iTblHeadTextAlign7": "center",
                   "iTblTextAlign7": "center",
                   "iTblCellFormat7": "normal",
                   "iTblCellImageSize7": "200",
                   "iTblCellBooleanCheckbox7": "false",
                   "iTblCellBooleanColorFalse7": "#ff0000",
                   "iTblCellBooleanColorTrue7": "#00ff00",
                   "iTblCellNumberDecimals7": "2",
                   "iTblCellNumberDecimalSeperator7": ".",
                   "iTblCellNumberThousandSeperator7": ",",
                   "iTblCellThresholdsDp7": "",
                   "iTblCellThresholdsText7": "",
                   "iColName7": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">\nØ-Tritt-<br>frequenz<br>(U/min.)",
                   "iColName8": "",
                   "iColName9": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Ø-Leistung<br>(in W)",
                   "iColName10": "",
                   "iColName11": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Ø-Speed<br>(in km/h)",
                   "iColName12": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">max-Speed<br>(in km/h)",
                   "iColName13": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Bergauf<br>(in m)",
                   "iColShow15": "true",
                   "iTblHeadTextAlign15": "center",
                   "iTblTextAlign15": "left",
                   "iTblCellFormat15": "normal",
                   "iTblCellImageSize15": "200",
                   "iTblCellBooleanCheckbox15": "false",
                   "iTblCellBooleanColorFalse15": "#ff0000",
                   "iTblCellBooleanColorTrue15": "#00ff00",
                   "iTblCellNumberDecimals15": "2",
                   "iTblCellNumberDecimalSeperator15": ".",
                   "iTblCellNumberThousandSeperator15": ",",
                   "iTblCellThresholdsDp15": "",
                   "iTblCellThresholdsText15": "",
                   "iColShow16": "true",
                   "iTblHeadTextAlign16": "center",
                   "iTblTextAlign16": "left",
                   "iTblCellFormat16": "normal",
                   "iTblCellImageSize16": "200",
                   "iTblCellBooleanCheckbox16": "false",
                   "iTblCellBooleanColorFalse16": "#ff0000",
                   "iTblCellBooleanColorTrue16": "#00ff00",
                   "iTblCellNumberDecimals16": "2",
                   "iTblCellNumberDecimalSeperator16": ".",
                   "iTblCellNumberThousandSeperator16": ",",
                   "iTblCellThresholdsDp16": "",
                   "iTblCellThresholdsText16": "",
                   "iColName14": "<p style=\"line-height:18px; font-size:16px;font-weight:normal\">Bergab<br>(in m)",
                   "iColAttr4": "",
                   "iVertScroll": false,
                   "iTblDummyRow": ""
               },
               "style": {
                   "left": "258px",
                   "top": "77px",
                   "z-index": "6",
                   "width": "995px",
                   "height": "130px",
                   "font-size": "14px",
                   "line-height": "12px",
                   "font-weight": "bold"
               },
               "widgetSet": "vis-inventwo"
           }
       },
       "name": "Fahrrad_Route",
       "rerender": false,
       "filterList": []
    }
    

    K Offline
    K Offline
    Kanumouse
    schrieb am zuletzt editiert von
    #68

    @bahnuhr

    Hi,
    ich habe heute endlich den Bosch-ebike-Adapter zum Laufen bekommen.
    Danach wollte ich auf deine Erfahrungen zurückgreifen und habe dein Script und die View importiert.
    Das bekomme ich leider nicht zum Laufen, ich denke, da fehlt irgend etwas.
    Wie werden die Objekte/Variablen unter javascript.0 gefüllt?
    Ich denke, irgend etwas fehlt mir auch in der View?

    bahnuhrB 1 Antwort Letzte Antwort
    0
    • K Kanumouse

      @bahnuhr

      Hi,
      ich habe heute endlich den Bosch-ebike-Adapter zum Laufen bekommen.
      Danach wollte ich auf deine Erfahrungen zurückgreifen und habe dein Script und die View importiert.
      Das bekomme ich leider nicht zum Laufen, ich denke, da fehlt irgend etwas.
      Wie werden die Objekte/Variablen unter javascript.0 gefüllt?
      Ich denke, irgend etwas fehlt mir auch in der View?

      bahnuhrB Online
      bahnuhrB Online
      bahnuhr
      Forum Testing Most Active
      schrieb am zuletzt editiert von
      #69

      @kanumouse
      Da fehlt gar nix.
      Läuft einwandfrei.

      Bitte alles genau anschauen und versuchen zu verstehen..


      Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
      Danke.
      gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
      ScreenToGif :https://www.screentogif.com/downloads.html

      K 1 Antwort Letzte Antwort
      0
      • bahnuhrB bahnuhr

        @kanumouse
        Da fehlt gar nix.
        Läuft einwandfrei.

        Bitte alles genau anschauen und versuchen zu verstehen..

        K Offline
        K Offline
        Kanumouse
        schrieb am zuletzt editiert von
        #70

        @bahnuhr
        Ich habe mir schon den Kopf zerbrochen, komme aber leider nicht weiter.
        Du hast sicherlich recht, dass ich irgend etwas nicht verstehe.

        K 1 Antwort Letzte Antwort
        0
        • K Kanumouse

          @bahnuhr
          Ich habe mir schon den Kopf zerbrochen, komme aber leider nicht weiter.
          Du hast sicherlich recht, dass ich irgend etwas nicht verstehe.

          K Offline
          K Offline
          Kanumouse
          schrieb am zuletzt editiert von Kanumouse
          #71

          @bahnuhr
          Hast du vielleicht einen Tipp für mich?
          Wenn ich das richtig verstehe, ist mir nicht klar wie die javascript.0.Geräte.Fahrrad.Touren-Variable als JSON gefüllt wird???
          Ich weiß nicht, wie die Daten der Trips aus der ebike-Instanz als Ausgangsdaten für den Script verwendet werden, sehe ich offensichtlich nicht durch.

          bahnuhrB 1 Antwort Letzte Antwort
          0
          • K Kanumouse

            @bahnuhr
            Hast du vielleicht einen Tipp für mich?
            Wenn ich das richtig verstehe, ist mir nicht klar wie die javascript.0.Geräte.Fahrrad.Touren-Variable als JSON gefüllt wird???
            Ich weiß nicht, wie die Daten der Trips aus der ebike-Instanz als Ausgangsdaten für den Script verwendet werden, sehe ich offensichtlich nicht durch.

            bahnuhrB Online
            bahnuhrB Online
            bahnuhr
            Forum Testing Most Active
            schrieb am zuletzt editiert von
            #72

            @kanumouse sagte in maps mit Streckendarstellung:

            ist mir nicht klar wie die javascript.0.Geräte.Fahrrad.Touren-Variable als JSON gefüllt wird???

            Das ist nicht wichtig, bzw. bei jedem ja anders.
            Du musst selber wissen wo deine lat und lon liegen.
            Und diese musst du dann per script poly zuweisen.
            Um danach eine html zu erzeugen.

                   // GPS einlesen und der Variablen poly zuweisen
                        if (trip < 10) trip = "0" + trip;       // DP bei den Objekten der eingelesen werden soll: bosch-ebike.0.trips.xx.details
                        var obj = JSON.parse(getState("bosch-ebike.0.trips." + trip + ".details").val); 
                        var end = obj.activityData.length - 1;
                        for (var x=0; x<=end; x++) {
                            if (obj.activityData[x].lat > 1 && obj.activityData[x].lon > 1) {
                                poly = poly + "["+obj.activityData[x].lat+", "+obj.activityData[x].lon+"]"
                                if (x < end) poly = poly + ","
                            }
                        }
                        if (logging) log (poly);
                    // html erzeugen und speichern in /vis.0/xxx.html
                        var string = '<!DOCTYPE html>\n<html>\n<head>\n<title>Simple Leaflet Map</title>\n<meta charset="utf-8" />\n'
                        string = string + '<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>\n'
                        string = string + '<body>\n<div id="map" style="width: 980px; height: 530px"></div>\n<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>\n<script>\n'
                        string = string + "var map = L.map('map').setView([" + center_gps + "], " + zoom + ");\n"
                        string = string + "mapLink = '<a href=" + '"http://openstreetmap.org"' + ">OpenStreetMap</a>';\n"
                        string = string + "L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);\n"
                        string = string + 'var polyline = L.polyline([ \n' + poly + '\n], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);\n'
                        string = string + '</script>\n</body>\n</html>'
                        writeFile("vis.0", "/Routen/" + pfad + trip +".html", string, (error) => {
                            if (logging) log('Datei "route.html" gespeichert!');
                        });
                        setState("javascript.0.Geräte.Fahrrad.Routen.Datei","/vis.0/Routen/" + pfad + trip + ".html");
            

            Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
            Danke.
            gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
            ScreenToGif :https://www.screentogif.com/downloads.html

            K 2 Antworten Letzte Antwort
            0
            • bahnuhrB bahnuhr

              @kanumouse sagte in maps mit Streckendarstellung:

              ist mir nicht klar wie die javascript.0.Geräte.Fahrrad.Touren-Variable als JSON gefüllt wird???

              Das ist nicht wichtig, bzw. bei jedem ja anders.
              Du musst selber wissen wo deine lat und lon liegen.
              Und diese musst du dann per script poly zuweisen.
              Um danach eine html zu erzeugen.

                     // GPS einlesen und der Variablen poly zuweisen
                          if (trip < 10) trip = "0" + trip;       // DP bei den Objekten der eingelesen werden soll: bosch-ebike.0.trips.xx.details
                          var obj = JSON.parse(getState("bosch-ebike.0.trips." + trip + ".details").val); 
                          var end = obj.activityData.length - 1;
                          for (var x=0; x<=end; x++) {
                              if (obj.activityData[x].lat > 1 && obj.activityData[x].lon > 1) {
                                  poly = poly + "["+obj.activityData[x].lat+", "+obj.activityData[x].lon+"]"
                                  if (x < end) poly = poly + ","
                              }
                          }
                          if (logging) log (poly);
                      // html erzeugen und speichern in /vis.0/xxx.html
                          var string = '<!DOCTYPE html>\n<html>\n<head>\n<title>Simple Leaflet Map</title>\n<meta charset="utf-8" />\n'
                          string = string + '<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>\n'
                          string = string + '<body>\n<div id="map" style="width: 980px; height: 530px"></div>\n<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>\n<script>\n'
                          string = string + "var map = L.map('map').setView([" + center_gps + "], " + zoom + ");\n"
                          string = string + "mapLink = '<a href=" + '"http://openstreetmap.org"' + ">OpenStreetMap</a>';\n"
                          string = string + "L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);\n"
                          string = string + 'var polyline = L.polyline([ \n' + poly + '\n], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);\n'
                          string = string + '</script>\n</body>\n</html>'
                          writeFile("vis.0", "/Routen/" + pfad + trip +".html", string, (error) => {
                              if (logging) log('Datei "route.html" gespeichert!');
                          });
                          setState("javascript.0.Geräte.Fahrrad.Routen.Datei","/vis.0/Routen/" + pfad + trip + ".html");
              
              K Offline
              K Offline
              Kanumouse
              schrieb am zuletzt editiert von
              #73

              @bahnuhr
              Danke für den Hinweis.
              Aber jetzt bin ich richtig verwirrt und ich glaube zu blöd dazu.
              Meine lat und lon habe ich in deinem Script an meinem Standort angepasst. Aber mit dem Rest bin ich überfordert, da sich meine AKenntnisse in der Programmierung im Anfangstadium befinden.

              1 Antwort Letzte Antwort
              0
              • bahnuhrB bahnuhr

                @kanumouse sagte in maps mit Streckendarstellung:

                ist mir nicht klar wie die javascript.0.Geräte.Fahrrad.Touren-Variable als JSON gefüllt wird???

                Das ist nicht wichtig, bzw. bei jedem ja anders.
                Du musst selber wissen wo deine lat und lon liegen.
                Und diese musst du dann per script poly zuweisen.
                Um danach eine html zu erzeugen.

                       // GPS einlesen und der Variablen poly zuweisen
                            if (trip < 10) trip = "0" + trip;       // DP bei den Objekten der eingelesen werden soll: bosch-ebike.0.trips.xx.details
                            var obj = JSON.parse(getState("bosch-ebike.0.trips." + trip + ".details").val); 
                            var end = obj.activityData.length - 1;
                            for (var x=0; x<=end; x++) {
                                if (obj.activityData[x].lat > 1 && obj.activityData[x].lon > 1) {
                                    poly = poly + "["+obj.activityData[x].lat+", "+obj.activityData[x].lon+"]"
                                    if (x < end) poly = poly + ","
                                }
                            }
                            if (logging) log (poly);
                        // html erzeugen und speichern in /vis.0/xxx.html
                            var string = '<!DOCTYPE html>\n<html>\n<head>\n<title>Simple Leaflet Map</title>\n<meta charset="utf-8" />\n'
                            string = string + '<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>\n'
                            string = string + '<body>\n<div id="map" style="width: 980px; height: 530px"></div>\n<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>\n<script>\n'
                            string = string + "var map = L.map('map').setView([" + center_gps + "], " + zoom + ");\n"
                            string = string + "mapLink = '<a href=" + '"http://openstreetmap.org"' + ">OpenStreetMap</a>';\n"
                            string = string + "L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);\n"
                            string = string + 'var polyline = L.polyline([ \n' + poly + '\n], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);\n'
                            string = string + '</script>\n</body>\n</html>'
                            writeFile("vis.0", "/Routen/" + pfad + trip +".html", string, (error) => {
                                if (logging) log('Datei "route.html" gespeichert!');
                            });
                            setState("javascript.0.Geräte.Fahrrad.Routen.Datei","/vis.0/Routen/" + pfad + trip + ".html");
                
                K Offline
                K Offline
                Kanumouse
                schrieb am zuletzt editiert von
                #74

                @bahnuhr
                Zur ERgänzung, so sieht meine importierte View aus.
                E-Bike_View.jpg

                bahnuhrB 1 Antwort Letzte Antwort
                0
                • K Kanumouse

                  @bahnuhr
                  Zur ERgänzung, so sieht meine importierte View aus.
                  E-Bike_View.jpg

                  bahnuhrB Online
                  bahnuhrB Online
                  bahnuhr
                  Forum Testing Most Active
                  schrieb am zuletzt editiert von
                  #75

                  @kanumouse
                  Ok, ich bin jetzt raus.
                  Ich glaube ohne intensive Einarbeitung deinerseits wird das nix.


                  Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                  Danke.
                  gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                  ScreenToGif :https://www.screentogif.com/downloads.html

                  K 1 Antwort Letzte Antwort
                  0
                  • bahnuhrB bahnuhr

                    @kanumouse
                    Ok, ich bin jetzt raus.
                    Ich glaube ohne intensive Einarbeitung deinerseits wird das nix.

                    K Offline
                    K Offline
                    Kanumouse
                    schrieb am zuletzt editiert von Kanumouse
                    #76

                    @bahnuhr
                    Kann ich verstehen, trotzdem schade!
                    Ich weiß nicht so richtig, wo ich im Moment anfangen soll.
                    Ich glaube mein Problem ist, wie ich aus der Instanz die Touren auslese und abspeichere???

                    OliverIOO 1 Antwort Letzte Antwort
                    0
                    • K Kanumouse

                      @bahnuhr
                      Kann ich verstehen, trotzdem schade!
                      Ich weiß nicht so richtig, wo ich im Moment anfangen soll.
                      Ich glaube mein Problem ist, wie ich aus der Instanz die Touren auslese und abspeichere???

                      OliverIOO Offline
                      OliverIOO Offline
                      OliverIO
                      schrieb am zuletzt editiert von
                      #77

                      @kanumouse

                      Ich habe hier mal ein versuch gestartet das etwas einfacher zu machen.
                      Du musst halt JSON können, ist aber auch nicht so schwer
                      https://forum.iobroker.net/topic/82214/test-iobroker-mapwidgets

                      Meine Adapter und Widgets
                      TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                      Links im Profil

                      K 1 Antwort Letzte Antwort
                      1
                      • OliverIOO OliverIO

                        @kanumouse

                        Ich habe hier mal ein versuch gestartet das etwas einfacher zu machen.
                        Du musst halt JSON können, ist aber auch nicht so schwer
                        https://forum.iobroker.net/topic/82214/test-iobroker-mapwidgets

                        K Offline
                        K Offline
                        Kanumouse
                        schrieb am zuletzt editiert von Kanumouse
                        #78

                        Ich habe jetzt im ersten Schritt alles hinbekommen und es funktioniert soweit. Einige kleinere Verbesserungen stehen noch an.
                        Nun habe ich eine dynamische Zuweisung des Kartenmittelpunktes eingefügt, die aber leider in der Anzeige nicht funktioniert.
                        In der html-Datei ist immer die richtige Mittelpunktzuweisung enthalten, nur angezeigt wird immer nur eine Karte mit dem erstmalig angezeigten Mittelpunkt.
                        Die Touren werden aber je nach Auswahl immer richtig in der Karte angezeigt. Nur man muss die Karte dann immer verschieben, da die Touren an unterschiedlichen Orten stattfanden.
                        Ich habe schon den Cache des Browers (Firefox) gelöscht und auch Chrome benutzt - immer dasselbe Ergebnis.
                        Jetzt weiß ich erst einmal nicht mehr weiter.
                        Hat Jemand einen Tipp für mich?
                        E_Bike_Touren.jpg

                        OliverIOO bahnuhrB 2 Antworten Letzte Antwort
                        0
                        • K Kanumouse

                          Ich habe jetzt im ersten Schritt alles hinbekommen und es funktioniert soweit. Einige kleinere Verbesserungen stehen noch an.
                          Nun habe ich eine dynamische Zuweisung des Kartenmittelpunktes eingefügt, die aber leider in der Anzeige nicht funktioniert.
                          In der html-Datei ist immer die richtige Mittelpunktzuweisung enthalten, nur angezeigt wird immer nur eine Karte mit dem erstmalig angezeigten Mittelpunkt.
                          Die Touren werden aber je nach Auswahl immer richtig in der Karte angezeigt. Nur man muss die Karte dann immer verschieben, da die Touren an unterschiedlichen Orten stattfanden.
                          Ich habe schon den Cache des Browers (Firefox) gelöscht und auch Chrome benutzt - immer dasselbe Ergebnis.
                          Jetzt weiß ich erst einmal nicht mehr weiter.
                          Hat Jemand einen Tipp für mich?
                          E_Bike_Touren.jpg

                          OliverIOO Offline
                          OliverIOO Offline
                          OliverIO
                          schrieb am zuletzt editiert von
                          #79

                          @kanumouse

                          Also, wenn es um den neuen Adapter geht, wäre es mir recht, wenn wir die Diskussion im anderen thread weiterführen.
                          Hier geht es ja, um individuellem Java Skript und hat mit dem Adapter nichts zu tun.

                          Eventuell hilft dir die seit gestern verfügbare Option fitBounds.
                          Ansonsten musst du mit etwas mehr Details schreiben. Am besten Widget Export plus Inhalt des Datenpunkts. Dann kann man sich besser vorstellen, was du machst.

                          Meine Adapter und Widgets
                          TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                          Links im Profil

                          1 Antwort Letzte Antwort
                          0
                          • K Kanumouse

                            Ich habe jetzt im ersten Schritt alles hinbekommen und es funktioniert soweit. Einige kleinere Verbesserungen stehen noch an.
                            Nun habe ich eine dynamische Zuweisung des Kartenmittelpunktes eingefügt, die aber leider in der Anzeige nicht funktioniert.
                            In der html-Datei ist immer die richtige Mittelpunktzuweisung enthalten, nur angezeigt wird immer nur eine Karte mit dem erstmalig angezeigten Mittelpunkt.
                            Die Touren werden aber je nach Auswahl immer richtig in der Karte angezeigt. Nur man muss die Karte dann immer verschieben, da die Touren an unterschiedlichen Orten stattfanden.
                            Ich habe schon den Cache des Browers (Firefox) gelöscht und auch Chrome benutzt - immer dasselbe Ergebnis.
                            Jetzt weiß ich erst einmal nicht mehr weiter.
                            Hat Jemand einen Tipp für mich?
                            E_Bike_Touren.jpg

                            bahnuhrB Online
                            bahnuhrB Online
                            bahnuhr
                            Forum Testing Most Active
                            schrieb am zuletzt editiert von bahnuhr
                            #80

                            @kanumouse sagte in maps mit Streckendarstellung:

                            In der html-Datei ist immer die richtige Mittelpunktzuweisung enthalten, nur angezeigt wird immer nur eine Karte mit dem erstmalig angezeigten Mittelpunkt.

                            Das Widget in VIS wird aktualisiert in der Anzeige, wenn sich der DP Eintrag ändert (oder du F5 drückst). Es reicht hier nicht die html zu ändern.
                            Folglich:
                            Ändere nicht nur die html sondern auch den html Namen. Und dieser musst du neu eintragen im DP.


                            Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                            Danke.
                            gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                            ScreenToGif :https://www.screentogif.com/downloads.html

                            K 1 Antwort Letzte Antwort
                            0
                            • bahnuhrB bahnuhr

                              @kanumouse sagte in maps mit Streckendarstellung:

                              In der html-Datei ist immer die richtige Mittelpunktzuweisung enthalten, nur angezeigt wird immer nur eine Karte mit dem erstmalig angezeigten Mittelpunkt.

                              Das Widget in VIS wird aktualisiert in der Anzeige, wenn sich der DP Eintrag ändert (oder du F5 drückst). Es reicht hier nicht die html zu ändern.
                              Folglich:
                              Ändere nicht nur die html sondern auch den html Namen. Und dieser musst du neu eintragen im DP.

                              K Offline
                              K Offline
                              Kanumouse
                              schrieb am zuletzt editiert von Kanumouse
                              #81

                              @bahnuhr
                              Danke für den Tipp, das war mir schon klar .Das ist aber nicht die Ursache.
                              Der Datenpunkt auf den der Link im widget verweist ändert sich, aber die map im widget ändert sich leider hinsichtlich des map-Mittelpunktes nicht. Die Routen werden in der map aber richtig angezeigt, nur ddie map muss man dann immer erst verschieben. Angezeigt wird die map immer mit Mittelpunkt (ca. 52.25, 14.41), obwohl bspw. in der html-Datei der richtige map-Mittelpunkt steht ( im Beispiel 53.21, 14.41).

                              <!DOCTYPE html>
                              <html>
                              <head>
                              <title>Simple Leaflet Map</title>
                              <meta charset="utf-8" />
                              <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                              <body>
                              <div id="map" style="width: 980px; height: 530px"></div>
                              <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                              <script>
                              var map = L.map('map').setView([53.25550348348861, 14.412522912025452], 13);
                              mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                              L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                              var polyline = L.polyline([ 
                              [53.94125, 14.19013],[53.94141, 14.19022],[53.94181, 14.19009],[53.94218, 14.18984],[53.94255, 14.18912],[53.94293, 14.18838],[53.94331, 14.18791],[53.94372, 14.18726],[53.94412, 14.18656],[53.94452, 14.18584],[53.94488, 14.18524],[53.94525, 14.1846],[53.94565, 14.18386],[53.94602, 14.18325],[53.94641, 14.18254],[53.94689, 14.18186],[53.94725, 14.18125],[53.94768, 14.18051],[53.94806, 14.17989],[53.94845, 14.17928],[53.94884, 14.17865],[53.94925, 14.17797],[53.94961, 14.1774],[53.95004, 14.17673],[53.95048, 14.1761],[53.9509, 14.17547],[53.95133, 14.17486],[53.95169, 14.17438],[53.95213, 14.17378],[53.95251, 14.17319],[53.95297, 14.17251],[53.95341, 14.172],[53.95391, 14.17158],[53.9544, 14.17137],[53.95489, 14.17189],[53.95535, 14.1715],[53.95578, 14.17097],[53.95609, 14.17026],[53.95653, 14.16975],[53.95705, 14.1693],[53.95723, 14.16861],[53.95767, 14.16802],[53.95818, 14.16737],[53.95854, 14.16685],[53.95887, 14.16607],[53.95923, 14.16542],[53.95957, 14.16471],[53.95996, 14.1641],[53.96037, 14.16347],[53.96078, 14.16283],[53.96118, 14.16219],[53.96159, 14.16152],[53.9619, 14.16082],[53.96219, 14.16006],[53.9626, 14.15945],[53.96299, 14.15881],[53.96341, 14.1582],[53.96386, 14.15751],[53.96428, 14.15688],[53.96467, 14.1563],[53.96513, 14.1556],[53.96551, 14.15503],[53.96589, 14.15446],[53.96632, 14.15383],[53.96669, 14.15312],[53.96707, 14.15244],[53.96749, 14.15172],[53.96791, 14.15116],[53.96835, 14.15065],[53.96881, 14.15013],[53.96926, 14.14955],[53.96964, 14.14905],[53.97014, 14.14843],[53.97055, 14.14791],[53.97101, 14.14728],[53.9714, 14.14676],[53.97184, 14.14619],[53.97227, 14.14559],[53.97276, 14.14509],[53.97316, 14.14456],[53.97364, 14.14397],[53.97406, 14.14347],[53.97452, 14.14293],[53.97496, 14.14233],[53.97539, 14.14182],[53.97519, 14.14116],[53.97554, 14.14057],[53.97601, 14.13997],[53.97635, 14.13947],[53.97669, 14.13876],[53.97718, 14.13846],[53.97757, 14.13793],[53.97803, 14.13745],[53.97853, 14.13671],[53.97894, 14.13625],[53.97933, 14.13555],[53.97964, 14.1349],[53.97979, 14.13404],[53.9799, 14.13295],[53.98003, 14.13225],[53.98028, 14.13133],[53.98048, 14.13038],[53.98072, 14.12971],[53.98093, 14.12877],[53.98104, 14.12798],[53.9811, 14.12704],[53.98119, 14.12609],[53.98083, 14.12554],[53.9808, 14.12479],[53.98119, 14.12414],[53.98164, 14.12338],[53.98171, 14.12263],[53.98154, 14.12173],[53.98135, 14.12075],[53.98183, 14.1204],[53.98232, 14.12012],[53.98283, 14.11985],[53.98336, 14.11961],[53.9839, 14.11939],[53.98413, 14.11868],[53.98431, 14.11774],[53.9846, 14.11687],[53.98498, 14.11628],[53.98553, 14.11636],[53.98601, 14.11684],[53.98648, 14.11739],[53.98692, 14.11711],[53.98738, 14.1167],[53.98794, 14.11641],[53.98842, 14.11592],[53.98887, 14.11553],[53.9892, 14.11489],[53.9894, 14.11399],[53.98968, 14.11335],[53.99037, 14.11337],[53.9908, 14.11362],[53.99133, 14.11368],[53.99176, 14.11309],[53.99204, 14.11226],[53.99238, 14.11168],[53.99286, 14.11124],[53.99331, 14.11077],[53.9938, 14.11025],[53.99421, 14.1097],[53.99469, 14.10904],[53.99508, 14.10851],[53.99548, 14.10781],[53.99571, 14.10706],[53.99575, 14.10608],[53.99588, 14.10523],[53.9963, 14.10453],[53.99676, 14.1041],[53.99724, 14.10367],[53.99778, 14.10318],[53.99818, 14.1027],[53.99858, 14.10214],[53.9991, 14.1016],[53.9995, 14.10104],[53.99984, 14.10035],[54.00013, 14.09949],[54.00042, 14.09875],[54.00075, 14.09809],[54.00127, 14.09739],[54.00163, 14.09696],[54.00196, 14.09612],[54.00235, 14.09547],[54.00273, 14.09487],[54.00308, 14.09401],[54.00336, 14.0935],[54.00377, 14.09294],[54.00409, 14.09205],[54.00448, 14.09156],[54.00486, 14.09084],[54.00517, 14.0901],[54.0056, 14.08947],[54.00595, 14.08879],[54.00626, 14.0879],[54.0065, 14.08718],[54.00682, 14.08636],[54.00732, 14.08582],[54.00769, 14.08526],[54.00811, 14.08452],[54.00843, 14.08393],[54.00887, 14.08331],[54.00927, 14.08254],[54.00958, 14.08187],[54.00997, 14.08109],[54.0103, 14.08045],[54.01069, 14.07968],[54.01107, 14.07897],[54.01142, 14.07832],[54.01181, 14.07762],[54.01215, 14.07701],[54.01257, 14.07629],[54.01282, 14.07562],[54.01314, 14.07475],[54.0134, 14.07381],[54.01356, 14.07298],[54.01365, 14.07199],[54.01396, 14.07138],[54.0145, 14.07111],[54.01501, 14.07091],[54.01535, 14.07018],[54.0169, 14.0673],[54.01678, 14.06685],[54.01642, 14.06614],[54.01608, 14.06547],[54.01572, 14.06466],[54.01551, 14.06385],[54.01525, 14.06308],[54.01488, 14.06226],[54.01456, 14.06153],[54.01427, 14.06085],[54.01397, 14.06005],[54.01376, 14.05918],[54.0137, 14.05822],[54.0137, 14.05717],[54.01369, 14.05624],[54.01365, 14.05536],[54.01356, 14.05441],[54.01344, 14.05352],[54.01329, 14.05269],[54.01315, 14.0518],[54.01347, 14.05122],[54.01386, 14.05055],[54.01425, 14.04971],[54.01451, 14.04906],[54.01505, 14.04859],[54.01535, 14.048],[54.01518, 14.0474],[54.01491, 14.04676],[54.01486, 14.04597],[54.01453, 14.04513],[54.01413, 14.04517],[54.01381, 14.04436],[54.01366, 14.04356],[54.01368, 14.04278],[54.01326, 14.04276],[54.01274, 14.04317],[54.01239, 14.04334],[54.01194, 14.04272],[54.01154, 14.04196],[54.01126, 14.04117],[54.01116, 14.04027],[54.01107, 14.03944],[54.01108, 14.03966],[54.01114, 14.04053],[54.0113, 14.04139],[54.01165, 14.04222],[54.01197, 14.04292],[54.01241, 14.04326],[54.01292, 14.04303],[54.01342, 14.04265],[54.0138, 14.04317],[54.01412, 14.044],[54.01439, 14.0447],[54.01469, 14.04555],[54.01495, 14.04633],[54.0151, 14.04702],[54.01532, 14.04744],[54.01515, 14.04832],[54.01478, 14.04881],[54.01432, 14.04936],[54.01402, 14.0502],[54.01363, 14.05084],[54.01328, 14.05147],[54.01325, 14.05232],[54.0134, 14.05325],[54.01351, 14.05413],[54.01362, 14.05499],[54.01368, 14.05603],[54.01371, 14.05695],[54.01376, 14.05776],[54.0138, 14.05869],[54.01398, 14.05964],[54.0142, 14.0603],[54.01447, 14.06113],[54.01482, 14.06191],[54.01511, 14.0626],[54.01548, 14.06348],[54.01565, 14.0643],[54.01599, 14.06516],[54.01633, 14.06583],[54.0167, 14.06646],[54.01718, 14.06698],[54.01757, 14.06769],[54.01766, 14.06837],[54.01754, 14.06756],[54.01716, 14.06702],[54.01683, 14.06697],[54.01682, 14.06779],[54.01648, 14.06865],[54.01609, 14.06913],[54.01566, 14.06957],[54.01535, 14.0703],[54.01495, 14.07089],[54.0144, 14.07115],[54.01387, 14.07148],[54.01361, 14.07216],[54.0135, 14.07309],[54.01333, 14.07401],[54.01307, 14.07487],[54.01283, 14.07555],[54.0125, 14.07643],[54.01215, 14.07706],[54.01171, 14.07781],[54.01132, 14.07849],[54.01099, 14.07911],[54.01059, 14.07981],[54.01025, 14.08048],[54.00983, 14.08131],[54.00949, 14.08203],[54.00917, 14.08276],[54.00877, 14.08346],[54.00843, 14.08395],[54.00807, 14.08463],[54.00764, 14.08533],[54.00718, 14.08595],[54.00673, 14.08652],[54.00648, 14.08721],[54.00618, 14.08809],[54.00586, 14.08892],[54.00553, 14.08953],[54.00513, 14.09011],[54.00486, 14.09082],[54.0044, 14.09161],[54.00401, 14.09207],[54.00377, 14.09286],[54.0034, 14.09346],[54.00304, 14.09414],[54.00273, 14.0948],[54.00228, 14.09547],[54.00195, 14.09617],[54.00158, 14.09701],[54.00112, 14.09757],[54.00072, 14.0981],[54.00041, 14.09882],[54.00013, 14.09953],[53.99981, 14.1004],[53.99947, 14.10107],[53.99901, 14.10167],[53.99852, 14.10224],[53.99807, 14.10286],[53.99767, 14.10333],[53.99719, 14.10377],[53.99663, 14.1042],[53.99622, 14.10458],[53.99583, 14.10522],[53.99573, 14.10614],[53.99567, 14.10716],[53.99538, 14.10798],[53.99501, 14.10865],[53.99456, 14.10925],[53.99411, 14.10986],[53.99367, 14.11036],[53.99327, 14.11082],[53.99281, 14.11132],[53.99243, 14.11176],[53.99208, 14.11242],[53.99174, 14.11336],[53.99124, 14.11362],[53.99076, 14.11354],[53.99028, 14.11332],[53.98967, 14.11344],[53.98946, 14.11411],[53.9892, 14.11501],[53.98887, 14.11559],[53.98829, 14.11608],[53.98787, 14.11648],[53.98732, 14.11683],[53.98692, 14.11727],[53.9864, 14.11731],[53.98603, 14.11686],[53.98555, 14.1163],[53.98499, 14.11629],[53.98463, 14.11687],[53.98438, 14.11767],[53.98422, 14.11843],[53.98395, 14.11919],[53.98343, 14.11952],[53.98287, 14.11985],[53.98232, 14.1202],[53.98184, 14.1204],[53.98147, 14.12077],[53.98165, 14.12156],[53.98171, 14.12245],[53.9816, 14.12334],[53.98122, 14.12402],[53.98092, 14.12461],[53.98094, 14.12538],[53.98122, 14.12623],[53.98109, 14.12714],[53.98105, 14.12813],[53.98091, 14.12888],[53.98072, 14.12981],[53.98042, 14.13055],[53.98024, 14.13147],[53.98001, 14.1323],[53.97987, 14.13308],[53.97978, 14.13402],[53.97961, 14.13492],[53.97927, 14.13573],[53.97885, 14.13629],[53.97847, 14.13679],[53.97802, 14.13742],[53.97757, 14.13797],[53.97704, 14.13847],[53.97667, 14.13891],[53.97624, 14.13952],[53.97588, 14.14008],[53.97543, 14.14064],[53.97527, 14.14131],[53.97525, 14.14188],[53.9748, 14.14246],[53.97435, 14.14306],[53.97394, 14.14353],[53.97347, 14.14415],[53.97301, 14.14474],[53.97255, 14.14524],[53.97211, 14.14571],[53.97165, 14.14637],[53.97123, 14.14694],[53.97078, 14.14754],[53.97039, 14.14802],[53.96992, 14.14864],[53.96946, 14.14927],[53.96906, 14.14976],[53.96859, 14.15033],[53.96817, 14.15082],[53.9677, 14.15134],[53.96731, 14.15191],[53.96688, 14.1527],[53.96656, 14.15334],[53.96616, 14.15406],[53.96574, 14.15462],[53.96538, 14.15518],[53.96494, 14.15583],[53.96453, 14.15648],[53.96416, 14.15701],[53.96372, 14.15767],[53.96327, 14.15834],[53.96291, 14.1589],[53.96247, 14.15959],[53.96207, 14.16021],[53.96185, 14.16103],[53.96145, 14.1617],[53.96108, 14.16233],[53.96064, 14.16304],[53.96029, 14.1636],[53.95984, 14.16429],[53.95945, 14.16487],[53.95911, 14.16567],[53.95874, 14.1662],[53.95846, 14.16692],[53.95798, 14.16761],[53.95757, 14.1681],[53.95717, 14.16875],[53.95684, 14.16944],[53.95638, 14.16987],[53.95593, 14.17046],[53.95561, 14.17115],[53.95515, 14.17168],[53.95462, 14.17173],[53.95421, 14.1712],[53.95376, 14.17169],[53.95329, 14.17212],[53.95285, 14.17272],[53.95244, 14.17329],[53.95197, 14.17394],[53.95161, 14.17443],[53.95119, 14.17502],[53.95068, 14.17573],[53.95026, 14.17636],[53.94986, 14.17695],[53.94945, 14.17756],[53.94907, 14.17821],[53.9487, 14.17882],[53.94827, 14.17951],[53.94792, 14.18008],[53.94752, 14.18075],[53.94711, 14.18144],[53.94674, 14.18207],[53.94626, 14.18274],[53.94591, 14.18334],[53.94551, 14.18407],[53.94517, 14.18469],[53.94478, 14.18536],[53.9444, 14.18602],[53.944, 14.18672],[53.94367, 14.18729],[53.94326, 14.18799],[53.94283, 14.18858],[53.94247, 14.18922],[53.94213, 14.18995],[53.94169, 14.18996],[53.94131, 14.19035]
                              ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                              </script>
                              </body>
                              </html>
                              
                              bahnuhrB 3 Antworten Letzte Antwort
                              0
                              • K Kanumouse

                                @bahnuhr
                                Danke für den Tipp, das war mir schon klar .Das ist aber nicht die Ursache.
                                Der Datenpunkt auf den der Link im widget verweist ändert sich, aber die map im widget ändert sich leider hinsichtlich des map-Mittelpunktes nicht. Die Routen werden in der map aber richtig angezeigt, nur ddie map muss man dann immer erst verschieben. Angezeigt wird die map immer mit Mittelpunkt (ca. 52.25, 14.41), obwohl bspw. in der html-Datei der richtige map-Mittelpunkt steht ( im Beispiel 53.21, 14.41).

                                <!DOCTYPE html>
                                <html>
                                <head>
                                <title>Simple Leaflet Map</title>
                                <meta charset="utf-8" />
                                <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                <body>
                                <div id="map" style="width: 980px; height: 530px"></div>
                                <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                <script>
                                var map = L.map('map').setView([53.25550348348861, 14.412522912025452], 13);
                                mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                var polyline = L.polyline([ 
                                [53.94125, 14.19013],[53.94141, 14.19022],[53.94181, 14.19009],[53.94218, 14.18984],[53.94255, 14.18912],[53.94293, 14.18838],[53.94331, 14.18791],[53.94372, 14.18726],[53.94412, 14.18656],[53.94452, 14.18584],[53.94488, 14.18524],[53.94525, 14.1846],[53.94565, 14.18386],[53.94602, 14.18325],[53.94641, 14.18254],[53.94689, 14.18186],[53.94725, 14.18125],[53.94768, 14.18051],[53.94806, 14.17989],[53.94845, 14.17928],[53.94884, 14.17865],[53.94925, 14.17797],[53.94961, 14.1774],[53.95004, 14.17673],[53.95048, 14.1761],[53.9509, 14.17547],[53.95133, 14.17486],[53.95169, 14.17438],[53.95213, 14.17378],[53.95251, 14.17319],[53.95297, 14.17251],[53.95341, 14.172],[53.95391, 14.17158],[53.9544, 14.17137],[53.95489, 14.17189],[53.95535, 14.1715],[53.95578, 14.17097],[53.95609, 14.17026],[53.95653, 14.16975],[53.95705, 14.1693],[53.95723, 14.16861],[53.95767, 14.16802],[53.95818, 14.16737],[53.95854, 14.16685],[53.95887, 14.16607],[53.95923, 14.16542],[53.95957, 14.16471],[53.95996, 14.1641],[53.96037, 14.16347],[53.96078, 14.16283],[53.96118, 14.16219],[53.96159, 14.16152],[53.9619, 14.16082],[53.96219, 14.16006],[53.9626, 14.15945],[53.96299, 14.15881],[53.96341, 14.1582],[53.96386, 14.15751],[53.96428, 14.15688],[53.96467, 14.1563],[53.96513, 14.1556],[53.96551, 14.15503],[53.96589, 14.15446],[53.96632, 14.15383],[53.96669, 14.15312],[53.96707, 14.15244],[53.96749, 14.15172],[53.96791, 14.15116],[53.96835, 14.15065],[53.96881, 14.15013],[53.96926, 14.14955],[53.96964, 14.14905],[53.97014, 14.14843],[53.97055, 14.14791],[53.97101, 14.14728],[53.9714, 14.14676],[53.97184, 14.14619],[53.97227, 14.14559],[53.97276, 14.14509],[53.97316, 14.14456],[53.97364, 14.14397],[53.97406, 14.14347],[53.97452, 14.14293],[53.97496, 14.14233],[53.97539, 14.14182],[53.97519, 14.14116],[53.97554, 14.14057],[53.97601, 14.13997],[53.97635, 14.13947],[53.97669, 14.13876],[53.97718, 14.13846],[53.97757, 14.13793],[53.97803, 14.13745],[53.97853, 14.13671],[53.97894, 14.13625],[53.97933, 14.13555],[53.97964, 14.1349],[53.97979, 14.13404],[53.9799, 14.13295],[53.98003, 14.13225],[53.98028, 14.13133],[53.98048, 14.13038],[53.98072, 14.12971],[53.98093, 14.12877],[53.98104, 14.12798],[53.9811, 14.12704],[53.98119, 14.12609],[53.98083, 14.12554],[53.9808, 14.12479],[53.98119, 14.12414],[53.98164, 14.12338],[53.98171, 14.12263],[53.98154, 14.12173],[53.98135, 14.12075],[53.98183, 14.1204],[53.98232, 14.12012],[53.98283, 14.11985],[53.98336, 14.11961],[53.9839, 14.11939],[53.98413, 14.11868],[53.98431, 14.11774],[53.9846, 14.11687],[53.98498, 14.11628],[53.98553, 14.11636],[53.98601, 14.11684],[53.98648, 14.11739],[53.98692, 14.11711],[53.98738, 14.1167],[53.98794, 14.11641],[53.98842, 14.11592],[53.98887, 14.11553],[53.9892, 14.11489],[53.9894, 14.11399],[53.98968, 14.11335],[53.99037, 14.11337],[53.9908, 14.11362],[53.99133, 14.11368],[53.99176, 14.11309],[53.99204, 14.11226],[53.99238, 14.11168],[53.99286, 14.11124],[53.99331, 14.11077],[53.9938, 14.11025],[53.99421, 14.1097],[53.99469, 14.10904],[53.99508, 14.10851],[53.99548, 14.10781],[53.99571, 14.10706],[53.99575, 14.10608],[53.99588, 14.10523],[53.9963, 14.10453],[53.99676, 14.1041],[53.99724, 14.10367],[53.99778, 14.10318],[53.99818, 14.1027],[53.99858, 14.10214],[53.9991, 14.1016],[53.9995, 14.10104],[53.99984, 14.10035],[54.00013, 14.09949],[54.00042, 14.09875],[54.00075, 14.09809],[54.00127, 14.09739],[54.00163, 14.09696],[54.00196, 14.09612],[54.00235, 14.09547],[54.00273, 14.09487],[54.00308, 14.09401],[54.00336, 14.0935],[54.00377, 14.09294],[54.00409, 14.09205],[54.00448, 14.09156],[54.00486, 14.09084],[54.00517, 14.0901],[54.0056, 14.08947],[54.00595, 14.08879],[54.00626, 14.0879],[54.0065, 14.08718],[54.00682, 14.08636],[54.00732, 14.08582],[54.00769, 14.08526],[54.00811, 14.08452],[54.00843, 14.08393],[54.00887, 14.08331],[54.00927, 14.08254],[54.00958, 14.08187],[54.00997, 14.08109],[54.0103, 14.08045],[54.01069, 14.07968],[54.01107, 14.07897],[54.01142, 14.07832],[54.01181, 14.07762],[54.01215, 14.07701],[54.01257, 14.07629],[54.01282, 14.07562],[54.01314, 14.07475],[54.0134, 14.07381],[54.01356, 14.07298],[54.01365, 14.07199],[54.01396, 14.07138],[54.0145, 14.07111],[54.01501, 14.07091],[54.01535, 14.07018],[54.0169, 14.0673],[54.01678, 14.06685],[54.01642, 14.06614],[54.01608, 14.06547],[54.01572, 14.06466],[54.01551, 14.06385],[54.01525, 14.06308],[54.01488, 14.06226],[54.01456, 14.06153],[54.01427, 14.06085],[54.01397, 14.06005],[54.01376, 14.05918],[54.0137, 14.05822],[54.0137, 14.05717],[54.01369, 14.05624],[54.01365, 14.05536],[54.01356, 14.05441],[54.01344, 14.05352],[54.01329, 14.05269],[54.01315, 14.0518],[54.01347, 14.05122],[54.01386, 14.05055],[54.01425, 14.04971],[54.01451, 14.04906],[54.01505, 14.04859],[54.01535, 14.048],[54.01518, 14.0474],[54.01491, 14.04676],[54.01486, 14.04597],[54.01453, 14.04513],[54.01413, 14.04517],[54.01381, 14.04436],[54.01366, 14.04356],[54.01368, 14.04278],[54.01326, 14.04276],[54.01274, 14.04317],[54.01239, 14.04334],[54.01194, 14.04272],[54.01154, 14.04196],[54.01126, 14.04117],[54.01116, 14.04027],[54.01107, 14.03944],[54.01108, 14.03966],[54.01114, 14.04053],[54.0113, 14.04139],[54.01165, 14.04222],[54.01197, 14.04292],[54.01241, 14.04326],[54.01292, 14.04303],[54.01342, 14.04265],[54.0138, 14.04317],[54.01412, 14.044],[54.01439, 14.0447],[54.01469, 14.04555],[54.01495, 14.04633],[54.0151, 14.04702],[54.01532, 14.04744],[54.01515, 14.04832],[54.01478, 14.04881],[54.01432, 14.04936],[54.01402, 14.0502],[54.01363, 14.05084],[54.01328, 14.05147],[54.01325, 14.05232],[54.0134, 14.05325],[54.01351, 14.05413],[54.01362, 14.05499],[54.01368, 14.05603],[54.01371, 14.05695],[54.01376, 14.05776],[54.0138, 14.05869],[54.01398, 14.05964],[54.0142, 14.0603],[54.01447, 14.06113],[54.01482, 14.06191],[54.01511, 14.0626],[54.01548, 14.06348],[54.01565, 14.0643],[54.01599, 14.06516],[54.01633, 14.06583],[54.0167, 14.06646],[54.01718, 14.06698],[54.01757, 14.06769],[54.01766, 14.06837],[54.01754, 14.06756],[54.01716, 14.06702],[54.01683, 14.06697],[54.01682, 14.06779],[54.01648, 14.06865],[54.01609, 14.06913],[54.01566, 14.06957],[54.01535, 14.0703],[54.01495, 14.07089],[54.0144, 14.07115],[54.01387, 14.07148],[54.01361, 14.07216],[54.0135, 14.07309],[54.01333, 14.07401],[54.01307, 14.07487],[54.01283, 14.07555],[54.0125, 14.07643],[54.01215, 14.07706],[54.01171, 14.07781],[54.01132, 14.07849],[54.01099, 14.07911],[54.01059, 14.07981],[54.01025, 14.08048],[54.00983, 14.08131],[54.00949, 14.08203],[54.00917, 14.08276],[54.00877, 14.08346],[54.00843, 14.08395],[54.00807, 14.08463],[54.00764, 14.08533],[54.00718, 14.08595],[54.00673, 14.08652],[54.00648, 14.08721],[54.00618, 14.08809],[54.00586, 14.08892],[54.00553, 14.08953],[54.00513, 14.09011],[54.00486, 14.09082],[54.0044, 14.09161],[54.00401, 14.09207],[54.00377, 14.09286],[54.0034, 14.09346],[54.00304, 14.09414],[54.00273, 14.0948],[54.00228, 14.09547],[54.00195, 14.09617],[54.00158, 14.09701],[54.00112, 14.09757],[54.00072, 14.0981],[54.00041, 14.09882],[54.00013, 14.09953],[53.99981, 14.1004],[53.99947, 14.10107],[53.99901, 14.10167],[53.99852, 14.10224],[53.99807, 14.10286],[53.99767, 14.10333],[53.99719, 14.10377],[53.99663, 14.1042],[53.99622, 14.10458],[53.99583, 14.10522],[53.99573, 14.10614],[53.99567, 14.10716],[53.99538, 14.10798],[53.99501, 14.10865],[53.99456, 14.10925],[53.99411, 14.10986],[53.99367, 14.11036],[53.99327, 14.11082],[53.99281, 14.11132],[53.99243, 14.11176],[53.99208, 14.11242],[53.99174, 14.11336],[53.99124, 14.11362],[53.99076, 14.11354],[53.99028, 14.11332],[53.98967, 14.11344],[53.98946, 14.11411],[53.9892, 14.11501],[53.98887, 14.11559],[53.98829, 14.11608],[53.98787, 14.11648],[53.98732, 14.11683],[53.98692, 14.11727],[53.9864, 14.11731],[53.98603, 14.11686],[53.98555, 14.1163],[53.98499, 14.11629],[53.98463, 14.11687],[53.98438, 14.11767],[53.98422, 14.11843],[53.98395, 14.11919],[53.98343, 14.11952],[53.98287, 14.11985],[53.98232, 14.1202],[53.98184, 14.1204],[53.98147, 14.12077],[53.98165, 14.12156],[53.98171, 14.12245],[53.9816, 14.12334],[53.98122, 14.12402],[53.98092, 14.12461],[53.98094, 14.12538],[53.98122, 14.12623],[53.98109, 14.12714],[53.98105, 14.12813],[53.98091, 14.12888],[53.98072, 14.12981],[53.98042, 14.13055],[53.98024, 14.13147],[53.98001, 14.1323],[53.97987, 14.13308],[53.97978, 14.13402],[53.97961, 14.13492],[53.97927, 14.13573],[53.97885, 14.13629],[53.97847, 14.13679],[53.97802, 14.13742],[53.97757, 14.13797],[53.97704, 14.13847],[53.97667, 14.13891],[53.97624, 14.13952],[53.97588, 14.14008],[53.97543, 14.14064],[53.97527, 14.14131],[53.97525, 14.14188],[53.9748, 14.14246],[53.97435, 14.14306],[53.97394, 14.14353],[53.97347, 14.14415],[53.97301, 14.14474],[53.97255, 14.14524],[53.97211, 14.14571],[53.97165, 14.14637],[53.97123, 14.14694],[53.97078, 14.14754],[53.97039, 14.14802],[53.96992, 14.14864],[53.96946, 14.14927],[53.96906, 14.14976],[53.96859, 14.15033],[53.96817, 14.15082],[53.9677, 14.15134],[53.96731, 14.15191],[53.96688, 14.1527],[53.96656, 14.15334],[53.96616, 14.15406],[53.96574, 14.15462],[53.96538, 14.15518],[53.96494, 14.15583],[53.96453, 14.15648],[53.96416, 14.15701],[53.96372, 14.15767],[53.96327, 14.15834],[53.96291, 14.1589],[53.96247, 14.15959],[53.96207, 14.16021],[53.96185, 14.16103],[53.96145, 14.1617],[53.96108, 14.16233],[53.96064, 14.16304],[53.96029, 14.1636],[53.95984, 14.16429],[53.95945, 14.16487],[53.95911, 14.16567],[53.95874, 14.1662],[53.95846, 14.16692],[53.95798, 14.16761],[53.95757, 14.1681],[53.95717, 14.16875],[53.95684, 14.16944],[53.95638, 14.16987],[53.95593, 14.17046],[53.95561, 14.17115],[53.95515, 14.17168],[53.95462, 14.17173],[53.95421, 14.1712],[53.95376, 14.17169],[53.95329, 14.17212],[53.95285, 14.17272],[53.95244, 14.17329],[53.95197, 14.17394],[53.95161, 14.17443],[53.95119, 14.17502],[53.95068, 14.17573],[53.95026, 14.17636],[53.94986, 14.17695],[53.94945, 14.17756],[53.94907, 14.17821],[53.9487, 14.17882],[53.94827, 14.17951],[53.94792, 14.18008],[53.94752, 14.18075],[53.94711, 14.18144],[53.94674, 14.18207],[53.94626, 14.18274],[53.94591, 14.18334],[53.94551, 14.18407],[53.94517, 14.18469],[53.94478, 14.18536],[53.9444, 14.18602],[53.944, 14.18672],[53.94367, 14.18729],[53.94326, 14.18799],[53.94283, 14.18858],[53.94247, 14.18922],[53.94213, 14.18995],[53.94169, 14.18996],[53.94131, 14.19035]
                                ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                </script>
                                </body>
                                </html>
                                
                                bahnuhrB Online
                                bahnuhrB Online
                                bahnuhr
                                Forum Testing Most Active
                                schrieb am zuletzt editiert von
                                #82

                                @kanumouse
                                Na, dann zeig doch mal deine html Dateien.

                                Einmal die, die beim Start richtig ist.
                                Und dann die, die du änderst und dann falsch angezeigt wird.

                                Hast du fitbounds drin ?


                                Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                                Danke.
                                gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                                ScreenToGif :https://www.screentogif.com/downloads.html

                                1 Antwort Letzte Antwort
                                0
                                • K Kanumouse

                                  @bahnuhr
                                  Danke für den Tipp, das war mir schon klar .Das ist aber nicht die Ursache.
                                  Der Datenpunkt auf den der Link im widget verweist ändert sich, aber die map im widget ändert sich leider hinsichtlich des map-Mittelpunktes nicht. Die Routen werden in der map aber richtig angezeigt, nur ddie map muss man dann immer erst verschieben. Angezeigt wird die map immer mit Mittelpunkt (ca. 52.25, 14.41), obwohl bspw. in der html-Datei der richtige map-Mittelpunkt steht ( im Beispiel 53.21, 14.41).

                                  <!DOCTYPE html>
                                  <html>
                                  <head>
                                  <title>Simple Leaflet Map</title>
                                  <meta charset="utf-8" />
                                  <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                  <body>
                                  <div id="map" style="width: 980px; height: 530px"></div>
                                  <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                  <script>
                                  var map = L.map('map').setView([53.25550348348861, 14.412522912025452], 13);
                                  mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                  L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                  var polyline = L.polyline([ 
                                  [53.94125, 14.19013],[53.94141, 14.19022],[53.94181, 14.19009],[53.94218, 14.18984],[53.94255, 14.18912],[53.94293, 14.18838],[53.94331, 14.18791],[53.94372, 14.18726],[53.94412, 14.18656],[53.94452, 14.18584],[53.94488, 14.18524],[53.94525, 14.1846],[53.94565, 14.18386],[53.94602, 14.18325],[53.94641, 14.18254],[53.94689, 14.18186],[53.94725, 14.18125],[53.94768, 14.18051],[53.94806, 14.17989],[53.94845, 14.17928],[53.94884, 14.17865],[53.94925, 14.17797],[53.94961, 14.1774],[53.95004, 14.17673],[53.95048, 14.1761],[53.9509, 14.17547],[53.95133, 14.17486],[53.95169, 14.17438],[53.95213, 14.17378],[53.95251, 14.17319],[53.95297, 14.17251],[53.95341, 14.172],[53.95391, 14.17158],[53.9544, 14.17137],[53.95489, 14.17189],[53.95535, 14.1715],[53.95578, 14.17097],[53.95609, 14.17026],[53.95653, 14.16975],[53.95705, 14.1693],[53.95723, 14.16861],[53.95767, 14.16802],[53.95818, 14.16737],[53.95854, 14.16685],[53.95887, 14.16607],[53.95923, 14.16542],[53.95957, 14.16471],[53.95996, 14.1641],[53.96037, 14.16347],[53.96078, 14.16283],[53.96118, 14.16219],[53.96159, 14.16152],[53.9619, 14.16082],[53.96219, 14.16006],[53.9626, 14.15945],[53.96299, 14.15881],[53.96341, 14.1582],[53.96386, 14.15751],[53.96428, 14.15688],[53.96467, 14.1563],[53.96513, 14.1556],[53.96551, 14.15503],[53.96589, 14.15446],[53.96632, 14.15383],[53.96669, 14.15312],[53.96707, 14.15244],[53.96749, 14.15172],[53.96791, 14.15116],[53.96835, 14.15065],[53.96881, 14.15013],[53.96926, 14.14955],[53.96964, 14.14905],[53.97014, 14.14843],[53.97055, 14.14791],[53.97101, 14.14728],[53.9714, 14.14676],[53.97184, 14.14619],[53.97227, 14.14559],[53.97276, 14.14509],[53.97316, 14.14456],[53.97364, 14.14397],[53.97406, 14.14347],[53.97452, 14.14293],[53.97496, 14.14233],[53.97539, 14.14182],[53.97519, 14.14116],[53.97554, 14.14057],[53.97601, 14.13997],[53.97635, 14.13947],[53.97669, 14.13876],[53.97718, 14.13846],[53.97757, 14.13793],[53.97803, 14.13745],[53.97853, 14.13671],[53.97894, 14.13625],[53.97933, 14.13555],[53.97964, 14.1349],[53.97979, 14.13404],[53.9799, 14.13295],[53.98003, 14.13225],[53.98028, 14.13133],[53.98048, 14.13038],[53.98072, 14.12971],[53.98093, 14.12877],[53.98104, 14.12798],[53.9811, 14.12704],[53.98119, 14.12609],[53.98083, 14.12554],[53.9808, 14.12479],[53.98119, 14.12414],[53.98164, 14.12338],[53.98171, 14.12263],[53.98154, 14.12173],[53.98135, 14.12075],[53.98183, 14.1204],[53.98232, 14.12012],[53.98283, 14.11985],[53.98336, 14.11961],[53.9839, 14.11939],[53.98413, 14.11868],[53.98431, 14.11774],[53.9846, 14.11687],[53.98498, 14.11628],[53.98553, 14.11636],[53.98601, 14.11684],[53.98648, 14.11739],[53.98692, 14.11711],[53.98738, 14.1167],[53.98794, 14.11641],[53.98842, 14.11592],[53.98887, 14.11553],[53.9892, 14.11489],[53.9894, 14.11399],[53.98968, 14.11335],[53.99037, 14.11337],[53.9908, 14.11362],[53.99133, 14.11368],[53.99176, 14.11309],[53.99204, 14.11226],[53.99238, 14.11168],[53.99286, 14.11124],[53.99331, 14.11077],[53.9938, 14.11025],[53.99421, 14.1097],[53.99469, 14.10904],[53.99508, 14.10851],[53.99548, 14.10781],[53.99571, 14.10706],[53.99575, 14.10608],[53.99588, 14.10523],[53.9963, 14.10453],[53.99676, 14.1041],[53.99724, 14.10367],[53.99778, 14.10318],[53.99818, 14.1027],[53.99858, 14.10214],[53.9991, 14.1016],[53.9995, 14.10104],[53.99984, 14.10035],[54.00013, 14.09949],[54.00042, 14.09875],[54.00075, 14.09809],[54.00127, 14.09739],[54.00163, 14.09696],[54.00196, 14.09612],[54.00235, 14.09547],[54.00273, 14.09487],[54.00308, 14.09401],[54.00336, 14.0935],[54.00377, 14.09294],[54.00409, 14.09205],[54.00448, 14.09156],[54.00486, 14.09084],[54.00517, 14.0901],[54.0056, 14.08947],[54.00595, 14.08879],[54.00626, 14.0879],[54.0065, 14.08718],[54.00682, 14.08636],[54.00732, 14.08582],[54.00769, 14.08526],[54.00811, 14.08452],[54.00843, 14.08393],[54.00887, 14.08331],[54.00927, 14.08254],[54.00958, 14.08187],[54.00997, 14.08109],[54.0103, 14.08045],[54.01069, 14.07968],[54.01107, 14.07897],[54.01142, 14.07832],[54.01181, 14.07762],[54.01215, 14.07701],[54.01257, 14.07629],[54.01282, 14.07562],[54.01314, 14.07475],[54.0134, 14.07381],[54.01356, 14.07298],[54.01365, 14.07199],[54.01396, 14.07138],[54.0145, 14.07111],[54.01501, 14.07091],[54.01535, 14.07018],[54.0169, 14.0673],[54.01678, 14.06685],[54.01642, 14.06614],[54.01608, 14.06547],[54.01572, 14.06466],[54.01551, 14.06385],[54.01525, 14.06308],[54.01488, 14.06226],[54.01456, 14.06153],[54.01427, 14.06085],[54.01397, 14.06005],[54.01376, 14.05918],[54.0137, 14.05822],[54.0137, 14.05717],[54.01369, 14.05624],[54.01365, 14.05536],[54.01356, 14.05441],[54.01344, 14.05352],[54.01329, 14.05269],[54.01315, 14.0518],[54.01347, 14.05122],[54.01386, 14.05055],[54.01425, 14.04971],[54.01451, 14.04906],[54.01505, 14.04859],[54.01535, 14.048],[54.01518, 14.0474],[54.01491, 14.04676],[54.01486, 14.04597],[54.01453, 14.04513],[54.01413, 14.04517],[54.01381, 14.04436],[54.01366, 14.04356],[54.01368, 14.04278],[54.01326, 14.04276],[54.01274, 14.04317],[54.01239, 14.04334],[54.01194, 14.04272],[54.01154, 14.04196],[54.01126, 14.04117],[54.01116, 14.04027],[54.01107, 14.03944],[54.01108, 14.03966],[54.01114, 14.04053],[54.0113, 14.04139],[54.01165, 14.04222],[54.01197, 14.04292],[54.01241, 14.04326],[54.01292, 14.04303],[54.01342, 14.04265],[54.0138, 14.04317],[54.01412, 14.044],[54.01439, 14.0447],[54.01469, 14.04555],[54.01495, 14.04633],[54.0151, 14.04702],[54.01532, 14.04744],[54.01515, 14.04832],[54.01478, 14.04881],[54.01432, 14.04936],[54.01402, 14.0502],[54.01363, 14.05084],[54.01328, 14.05147],[54.01325, 14.05232],[54.0134, 14.05325],[54.01351, 14.05413],[54.01362, 14.05499],[54.01368, 14.05603],[54.01371, 14.05695],[54.01376, 14.05776],[54.0138, 14.05869],[54.01398, 14.05964],[54.0142, 14.0603],[54.01447, 14.06113],[54.01482, 14.06191],[54.01511, 14.0626],[54.01548, 14.06348],[54.01565, 14.0643],[54.01599, 14.06516],[54.01633, 14.06583],[54.0167, 14.06646],[54.01718, 14.06698],[54.01757, 14.06769],[54.01766, 14.06837],[54.01754, 14.06756],[54.01716, 14.06702],[54.01683, 14.06697],[54.01682, 14.06779],[54.01648, 14.06865],[54.01609, 14.06913],[54.01566, 14.06957],[54.01535, 14.0703],[54.01495, 14.07089],[54.0144, 14.07115],[54.01387, 14.07148],[54.01361, 14.07216],[54.0135, 14.07309],[54.01333, 14.07401],[54.01307, 14.07487],[54.01283, 14.07555],[54.0125, 14.07643],[54.01215, 14.07706],[54.01171, 14.07781],[54.01132, 14.07849],[54.01099, 14.07911],[54.01059, 14.07981],[54.01025, 14.08048],[54.00983, 14.08131],[54.00949, 14.08203],[54.00917, 14.08276],[54.00877, 14.08346],[54.00843, 14.08395],[54.00807, 14.08463],[54.00764, 14.08533],[54.00718, 14.08595],[54.00673, 14.08652],[54.00648, 14.08721],[54.00618, 14.08809],[54.00586, 14.08892],[54.00553, 14.08953],[54.00513, 14.09011],[54.00486, 14.09082],[54.0044, 14.09161],[54.00401, 14.09207],[54.00377, 14.09286],[54.0034, 14.09346],[54.00304, 14.09414],[54.00273, 14.0948],[54.00228, 14.09547],[54.00195, 14.09617],[54.00158, 14.09701],[54.00112, 14.09757],[54.00072, 14.0981],[54.00041, 14.09882],[54.00013, 14.09953],[53.99981, 14.1004],[53.99947, 14.10107],[53.99901, 14.10167],[53.99852, 14.10224],[53.99807, 14.10286],[53.99767, 14.10333],[53.99719, 14.10377],[53.99663, 14.1042],[53.99622, 14.10458],[53.99583, 14.10522],[53.99573, 14.10614],[53.99567, 14.10716],[53.99538, 14.10798],[53.99501, 14.10865],[53.99456, 14.10925],[53.99411, 14.10986],[53.99367, 14.11036],[53.99327, 14.11082],[53.99281, 14.11132],[53.99243, 14.11176],[53.99208, 14.11242],[53.99174, 14.11336],[53.99124, 14.11362],[53.99076, 14.11354],[53.99028, 14.11332],[53.98967, 14.11344],[53.98946, 14.11411],[53.9892, 14.11501],[53.98887, 14.11559],[53.98829, 14.11608],[53.98787, 14.11648],[53.98732, 14.11683],[53.98692, 14.11727],[53.9864, 14.11731],[53.98603, 14.11686],[53.98555, 14.1163],[53.98499, 14.11629],[53.98463, 14.11687],[53.98438, 14.11767],[53.98422, 14.11843],[53.98395, 14.11919],[53.98343, 14.11952],[53.98287, 14.11985],[53.98232, 14.1202],[53.98184, 14.1204],[53.98147, 14.12077],[53.98165, 14.12156],[53.98171, 14.12245],[53.9816, 14.12334],[53.98122, 14.12402],[53.98092, 14.12461],[53.98094, 14.12538],[53.98122, 14.12623],[53.98109, 14.12714],[53.98105, 14.12813],[53.98091, 14.12888],[53.98072, 14.12981],[53.98042, 14.13055],[53.98024, 14.13147],[53.98001, 14.1323],[53.97987, 14.13308],[53.97978, 14.13402],[53.97961, 14.13492],[53.97927, 14.13573],[53.97885, 14.13629],[53.97847, 14.13679],[53.97802, 14.13742],[53.97757, 14.13797],[53.97704, 14.13847],[53.97667, 14.13891],[53.97624, 14.13952],[53.97588, 14.14008],[53.97543, 14.14064],[53.97527, 14.14131],[53.97525, 14.14188],[53.9748, 14.14246],[53.97435, 14.14306],[53.97394, 14.14353],[53.97347, 14.14415],[53.97301, 14.14474],[53.97255, 14.14524],[53.97211, 14.14571],[53.97165, 14.14637],[53.97123, 14.14694],[53.97078, 14.14754],[53.97039, 14.14802],[53.96992, 14.14864],[53.96946, 14.14927],[53.96906, 14.14976],[53.96859, 14.15033],[53.96817, 14.15082],[53.9677, 14.15134],[53.96731, 14.15191],[53.96688, 14.1527],[53.96656, 14.15334],[53.96616, 14.15406],[53.96574, 14.15462],[53.96538, 14.15518],[53.96494, 14.15583],[53.96453, 14.15648],[53.96416, 14.15701],[53.96372, 14.15767],[53.96327, 14.15834],[53.96291, 14.1589],[53.96247, 14.15959],[53.96207, 14.16021],[53.96185, 14.16103],[53.96145, 14.1617],[53.96108, 14.16233],[53.96064, 14.16304],[53.96029, 14.1636],[53.95984, 14.16429],[53.95945, 14.16487],[53.95911, 14.16567],[53.95874, 14.1662],[53.95846, 14.16692],[53.95798, 14.16761],[53.95757, 14.1681],[53.95717, 14.16875],[53.95684, 14.16944],[53.95638, 14.16987],[53.95593, 14.17046],[53.95561, 14.17115],[53.95515, 14.17168],[53.95462, 14.17173],[53.95421, 14.1712],[53.95376, 14.17169],[53.95329, 14.17212],[53.95285, 14.17272],[53.95244, 14.17329],[53.95197, 14.17394],[53.95161, 14.17443],[53.95119, 14.17502],[53.95068, 14.17573],[53.95026, 14.17636],[53.94986, 14.17695],[53.94945, 14.17756],[53.94907, 14.17821],[53.9487, 14.17882],[53.94827, 14.17951],[53.94792, 14.18008],[53.94752, 14.18075],[53.94711, 14.18144],[53.94674, 14.18207],[53.94626, 14.18274],[53.94591, 14.18334],[53.94551, 14.18407],[53.94517, 14.18469],[53.94478, 14.18536],[53.9444, 14.18602],[53.944, 14.18672],[53.94367, 14.18729],[53.94326, 14.18799],[53.94283, 14.18858],[53.94247, 14.18922],[53.94213, 14.18995],[53.94169, 14.18996],[53.94131, 14.19035]
                                  ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                  </script>
                                  </body>
                                  </html>
                                  
                                  bahnuhrB Online
                                  bahnuhrB Online
                                  bahnuhr
                                  Forum Testing Most Active
                                  schrieb am zuletzt editiert von
                                  #83

                                  @kanumouse sagte in maps mit Streckendarstellung:

                                  Der Datenpunkt auf den der Link im widget verweist ändert sich,

                                  Da bist du sicher.

                                  Der Eintrag im DP muss ! sich ändern; und nicht nur die dahinter liegende html Datei.


                                  Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                                  Danke.
                                  gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                                  ScreenToGif :https://www.screentogif.com/downloads.html

                                  1 Antwort Letzte Antwort
                                  0
                                  • K Kanumouse

                                    @bahnuhr
                                    Danke für den Tipp, das war mir schon klar .Das ist aber nicht die Ursache.
                                    Der Datenpunkt auf den der Link im widget verweist ändert sich, aber die map im widget ändert sich leider hinsichtlich des map-Mittelpunktes nicht. Die Routen werden in der map aber richtig angezeigt, nur ddie map muss man dann immer erst verschieben. Angezeigt wird die map immer mit Mittelpunkt (ca. 52.25, 14.41), obwohl bspw. in der html-Datei der richtige map-Mittelpunkt steht ( im Beispiel 53.21, 14.41).

                                    <!DOCTYPE html>
                                    <html>
                                    <head>
                                    <title>Simple Leaflet Map</title>
                                    <meta charset="utf-8" />
                                    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                    <body>
                                    <div id="map" style="width: 980px; height: 530px"></div>
                                    <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                    <script>
                                    var map = L.map('map').setView([53.25550348348861, 14.412522912025452], 13);
                                    mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                    L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                    var polyline = L.polyline([ 
                                    [53.94125, 14.19013],[53.94141, 14.19022],[53.94181, 14.19009],[53.94218, 14.18984],[53.94255, 14.18912],[53.94293, 14.18838],[53.94331, 14.18791],[53.94372, 14.18726],[53.94412, 14.18656],[53.94452, 14.18584],[53.94488, 14.18524],[53.94525, 14.1846],[53.94565, 14.18386],[53.94602, 14.18325],[53.94641, 14.18254],[53.94689, 14.18186],[53.94725, 14.18125],[53.94768, 14.18051],[53.94806, 14.17989],[53.94845, 14.17928],[53.94884, 14.17865],[53.94925, 14.17797],[53.94961, 14.1774],[53.95004, 14.17673],[53.95048, 14.1761],[53.9509, 14.17547],[53.95133, 14.17486],[53.95169, 14.17438],[53.95213, 14.17378],[53.95251, 14.17319],[53.95297, 14.17251],[53.95341, 14.172],[53.95391, 14.17158],[53.9544, 14.17137],[53.95489, 14.17189],[53.95535, 14.1715],[53.95578, 14.17097],[53.95609, 14.17026],[53.95653, 14.16975],[53.95705, 14.1693],[53.95723, 14.16861],[53.95767, 14.16802],[53.95818, 14.16737],[53.95854, 14.16685],[53.95887, 14.16607],[53.95923, 14.16542],[53.95957, 14.16471],[53.95996, 14.1641],[53.96037, 14.16347],[53.96078, 14.16283],[53.96118, 14.16219],[53.96159, 14.16152],[53.9619, 14.16082],[53.96219, 14.16006],[53.9626, 14.15945],[53.96299, 14.15881],[53.96341, 14.1582],[53.96386, 14.15751],[53.96428, 14.15688],[53.96467, 14.1563],[53.96513, 14.1556],[53.96551, 14.15503],[53.96589, 14.15446],[53.96632, 14.15383],[53.96669, 14.15312],[53.96707, 14.15244],[53.96749, 14.15172],[53.96791, 14.15116],[53.96835, 14.15065],[53.96881, 14.15013],[53.96926, 14.14955],[53.96964, 14.14905],[53.97014, 14.14843],[53.97055, 14.14791],[53.97101, 14.14728],[53.9714, 14.14676],[53.97184, 14.14619],[53.97227, 14.14559],[53.97276, 14.14509],[53.97316, 14.14456],[53.97364, 14.14397],[53.97406, 14.14347],[53.97452, 14.14293],[53.97496, 14.14233],[53.97539, 14.14182],[53.97519, 14.14116],[53.97554, 14.14057],[53.97601, 14.13997],[53.97635, 14.13947],[53.97669, 14.13876],[53.97718, 14.13846],[53.97757, 14.13793],[53.97803, 14.13745],[53.97853, 14.13671],[53.97894, 14.13625],[53.97933, 14.13555],[53.97964, 14.1349],[53.97979, 14.13404],[53.9799, 14.13295],[53.98003, 14.13225],[53.98028, 14.13133],[53.98048, 14.13038],[53.98072, 14.12971],[53.98093, 14.12877],[53.98104, 14.12798],[53.9811, 14.12704],[53.98119, 14.12609],[53.98083, 14.12554],[53.9808, 14.12479],[53.98119, 14.12414],[53.98164, 14.12338],[53.98171, 14.12263],[53.98154, 14.12173],[53.98135, 14.12075],[53.98183, 14.1204],[53.98232, 14.12012],[53.98283, 14.11985],[53.98336, 14.11961],[53.9839, 14.11939],[53.98413, 14.11868],[53.98431, 14.11774],[53.9846, 14.11687],[53.98498, 14.11628],[53.98553, 14.11636],[53.98601, 14.11684],[53.98648, 14.11739],[53.98692, 14.11711],[53.98738, 14.1167],[53.98794, 14.11641],[53.98842, 14.11592],[53.98887, 14.11553],[53.9892, 14.11489],[53.9894, 14.11399],[53.98968, 14.11335],[53.99037, 14.11337],[53.9908, 14.11362],[53.99133, 14.11368],[53.99176, 14.11309],[53.99204, 14.11226],[53.99238, 14.11168],[53.99286, 14.11124],[53.99331, 14.11077],[53.9938, 14.11025],[53.99421, 14.1097],[53.99469, 14.10904],[53.99508, 14.10851],[53.99548, 14.10781],[53.99571, 14.10706],[53.99575, 14.10608],[53.99588, 14.10523],[53.9963, 14.10453],[53.99676, 14.1041],[53.99724, 14.10367],[53.99778, 14.10318],[53.99818, 14.1027],[53.99858, 14.10214],[53.9991, 14.1016],[53.9995, 14.10104],[53.99984, 14.10035],[54.00013, 14.09949],[54.00042, 14.09875],[54.00075, 14.09809],[54.00127, 14.09739],[54.00163, 14.09696],[54.00196, 14.09612],[54.00235, 14.09547],[54.00273, 14.09487],[54.00308, 14.09401],[54.00336, 14.0935],[54.00377, 14.09294],[54.00409, 14.09205],[54.00448, 14.09156],[54.00486, 14.09084],[54.00517, 14.0901],[54.0056, 14.08947],[54.00595, 14.08879],[54.00626, 14.0879],[54.0065, 14.08718],[54.00682, 14.08636],[54.00732, 14.08582],[54.00769, 14.08526],[54.00811, 14.08452],[54.00843, 14.08393],[54.00887, 14.08331],[54.00927, 14.08254],[54.00958, 14.08187],[54.00997, 14.08109],[54.0103, 14.08045],[54.01069, 14.07968],[54.01107, 14.07897],[54.01142, 14.07832],[54.01181, 14.07762],[54.01215, 14.07701],[54.01257, 14.07629],[54.01282, 14.07562],[54.01314, 14.07475],[54.0134, 14.07381],[54.01356, 14.07298],[54.01365, 14.07199],[54.01396, 14.07138],[54.0145, 14.07111],[54.01501, 14.07091],[54.01535, 14.07018],[54.0169, 14.0673],[54.01678, 14.06685],[54.01642, 14.06614],[54.01608, 14.06547],[54.01572, 14.06466],[54.01551, 14.06385],[54.01525, 14.06308],[54.01488, 14.06226],[54.01456, 14.06153],[54.01427, 14.06085],[54.01397, 14.06005],[54.01376, 14.05918],[54.0137, 14.05822],[54.0137, 14.05717],[54.01369, 14.05624],[54.01365, 14.05536],[54.01356, 14.05441],[54.01344, 14.05352],[54.01329, 14.05269],[54.01315, 14.0518],[54.01347, 14.05122],[54.01386, 14.05055],[54.01425, 14.04971],[54.01451, 14.04906],[54.01505, 14.04859],[54.01535, 14.048],[54.01518, 14.0474],[54.01491, 14.04676],[54.01486, 14.04597],[54.01453, 14.04513],[54.01413, 14.04517],[54.01381, 14.04436],[54.01366, 14.04356],[54.01368, 14.04278],[54.01326, 14.04276],[54.01274, 14.04317],[54.01239, 14.04334],[54.01194, 14.04272],[54.01154, 14.04196],[54.01126, 14.04117],[54.01116, 14.04027],[54.01107, 14.03944],[54.01108, 14.03966],[54.01114, 14.04053],[54.0113, 14.04139],[54.01165, 14.04222],[54.01197, 14.04292],[54.01241, 14.04326],[54.01292, 14.04303],[54.01342, 14.04265],[54.0138, 14.04317],[54.01412, 14.044],[54.01439, 14.0447],[54.01469, 14.04555],[54.01495, 14.04633],[54.0151, 14.04702],[54.01532, 14.04744],[54.01515, 14.04832],[54.01478, 14.04881],[54.01432, 14.04936],[54.01402, 14.0502],[54.01363, 14.05084],[54.01328, 14.05147],[54.01325, 14.05232],[54.0134, 14.05325],[54.01351, 14.05413],[54.01362, 14.05499],[54.01368, 14.05603],[54.01371, 14.05695],[54.01376, 14.05776],[54.0138, 14.05869],[54.01398, 14.05964],[54.0142, 14.0603],[54.01447, 14.06113],[54.01482, 14.06191],[54.01511, 14.0626],[54.01548, 14.06348],[54.01565, 14.0643],[54.01599, 14.06516],[54.01633, 14.06583],[54.0167, 14.06646],[54.01718, 14.06698],[54.01757, 14.06769],[54.01766, 14.06837],[54.01754, 14.06756],[54.01716, 14.06702],[54.01683, 14.06697],[54.01682, 14.06779],[54.01648, 14.06865],[54.01609, 14.06913],[54.01566, 14.06957],[54.01535, 14.0703],[54.01495, 14.07089],[54.0144, 14.07115],[54.01387, 14.07148],[54.01361, 14.07216],[54.0135, 14.07309],[54.01333, 14.07401],[54.01307, 14.07487],[54.01283, 14.07555],[54.0125, 14.07643],[54.01215, 14.07706],[54.01171, 14.07781],[54.01132, 14.07849],[54.01099, 14.07911],[54.01059, 14.07981],[54.01025, 14.08048],[54.00983, 14.08131],[54.00949, 14.08203],[54.00917, 14.08276],[54.00877, 14.08346],[54.00843, 14.08395],[54.00807, 14.08463],[54.00764, 14.08533],[54.00718, 14.08595],[54.00673, 14.08652],[54.00648, 14.08721],[54.00618, 14.08809],[54.00586, 14.08892],[54.00553, 14.08953],[54.00513, 14.09011],[54.00486, 14.09082],[54.0044, 14.09161],[54.00401, 14.09207],[54.00377, 14.09286],[54.0034, 14.09346],[54.00304, 14.09414],[54.00273, 14.0948],[54.00228, 14.09547],[54.00195, 14.09617],[54.00158, 14.09701],[54.00112, 14.09757],[54.00072, 14.0981],[54.00041, 14.09882],[54.00013, 14.09953],[53.99981, 14.1004],[53.99947, 14.10107],[53.99901, 14.10167],[53.99852, 14.10224],[53.99807, 14.10286],[53.99767, 14.10333],[53.99719, 14.10377],[53.99663, 14.1042],[53.99622, 14.10458],[53.99583, 14.10522],[53.99573, 14.10614],[53.99567, 14.10716],[53.99538, 14.10798],[53.99501, 14.10865],[53.99456, 14.10925],[53.99411, 14.10986],[53.99367, 14.11036],[53.99327, 14.11082],[53.99281, 14.11132],[53.99243, 14.11176],[53.99208, 14.11242],[53.99174, 14.11336],[53.99124, 14.11362],[53.99076, 14.11354],[53.99028, 14.11332],[53.98967, 14.11344],[53.98946, 14.11411],[53.9892, 14.11501],[53.98887, 14.11559],[53.98829, 14.11608],[53.98787, 14.11648],[53.98732, 14.11683],[53.98692, 14.11727],[53.9864, 14.11731],[53.98603, 14.11686],[53.98555, 14.1163],[53.98499, 14.11629],[53.98463, 14.11687],[53.98438, 14.11767],[53.98422, 14.11843],[53.98395, 14.11919],[53.98343, 14.11952],[53.98287, 14.11985],[53.98232, 14.1202],[53.98184, 14.1204],[53.98147, 14.12077],[53.98165, 14.12156],[53.98171, 14.12245],[53.9816, 14.12334],[53.98122, 14.12402],[53.98092, 14.12461],[53.98094, 14.12538],[53.98122, 14.12623],[53.98109, 14.12714],[53.98105, 14.12813],[53.98091, 14.12888],[53.98072, 14.12981],[53.98042, 14.13055],[53.98024, 14.13147],[53.98001, 14.1323],[53.97987, 14.13308],[53.97978, 14.13402],[53.97961, 14.13492],[53.97927, 14.13573],[53.97885, 14.13629],[53.97847, 14.13679],[53.97802, 14.13742],[53.97757, 14.13797],[53.97704, 14.13847],[53.97667, 14.13891],[53.97624, 14.13952],[53.97588, 14.14008],[53.97543, 14.14064],[53.97527, 14.14131],[53.97525, 14.14188],[53.9748, 14.14246],[53.97435, 14.14306],[53.97394, 14.14353],[53.97347, 14.14415],[53.97301, 14.14474],[53.97255, 14.14524],[53.97211, 14.14571],[53.97165, 14.14637],[53.97123, 14.14694],[53.97078, 14.14754],[53.97039, 14.14802],[53.96992, 14.14864],[53.96946, 14.14927],[53.96906, 14.14976],[53.96859, 14.15033],[53.96817, 14.15082],[53.9677, 14.15134],[53.96731, 14.15191],[53.96688, 14.1527],[53.96656, 14.15334],[53.96616, 14.15406],[53.96574, 14.15462],[53.96538, 14.15518],[53.96494, 14.15583],[53.96453, 14.15648],[53.96416, 14.15701],[53.96372, 14.15767],[53.96327, 14.15834],[53.96291, 14.1589],[53.96247, 14.15959],[53.96207, 14.16021],[53.96185, 14.16103],[53.96145, 14.1617],[53.96108, 14.16233],[53.96064, 14.16304],[53.96029, 14.1636],[53.95984, 14.16429],[53.95945, 14.16487],[53.95911, 14.16567],[53.95874, 14.1662],[53.95846, 14.16692],[53.95798, 14.16761],[53.95757, 14.1681],[53.95717, 14.16875],[53.95684, 14.16944],[53.95638, 14.16987],[53.95593, 14.17046],[53.95561, 14.17115],[53.95515, 14.17168],[53.95462, 14.17173],[53.95421, 14.1712],[53.95376, 14.17169],[53.95329, 14.17212],[53.95285, 14.17272],[53.95244, 14.17329],[53.95197, 14.17394],[53.95161, 14.17443],[53.95119, 14.17502],[53.95068, 14.17573],[53.95026, 14.17636],[53.94986, 14.17695],[53.94945, 14.17756],[53.94907, 14.17821],[53.9487, 14.17882],[53.94827, 14.17951],[53.94792, 14.18008],[53.94752, 14.18075],[53.94711, 14.18144],[53.94674, 14.18207],[53.94626, 14.18274],[53.94591, 14.18334],[53.94551, 14.18407],[53.94517, 14.18469],[53.94478, 14.18536],[53.9444, 14.18602],[53.944, 14.18672],[53.94367, 14.18729],[53.94326, 14.18799],[53.94283, 14.18858],[53.94247, 14.18922],[53.94213, 14.18995],[53.94169, 14.18996],[53.94131, 14.19035]
                                    ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                    </script>
                                    </body>
                                    </html>
                                    
                                    bahnuhrB Online
                                    bahnuhrB Online
                                    bahnuhr
                                    Forum Testing Most Active
                                    schrieb am zuletzt editiert von
                                    #84

                                    @kanumouse

                                    Nachtrag:
                                    Wenn ich deine Daten von oben in eine html speichere, dann sehe ich gar keine Linie !

                                    e98c1656-3b71-46e4-94a2-2172339fc378-image.png


                                    Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                                    Danke.
                                    gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                                    ScreenToGif :https://www.screentogif.com/downloads.html

                                    K 1 Antwort Letzte Antwort
                                    0
                                    • bahnuhrB bahnuhr

                                      @kanumouse

                                      Nachtrag:
                                      Wenn ich deine Daten von oben in eine html speichere, dann sehe ich gar keine Linie !

                                      e98c1656-3b71-46e4-94a2-2172339fc378-image.png

                                      K Offline
                                      K Offline
                                      Kanumouse
                                      schrieb am zuletzt editiert von
                                      #85

                                      @bahnuhr
                                      Das ist das Bild und die html für die Route, wo der Mittelpunkt nicht mit dem in der Datei eingetragenem übereinstimmt.

                                      Tour_1.jpg

                                      <!DOCTYPE html>
                                      <html>
                                      <head>
                                      <title>Simple Leaflet Map</title>
                                      <meta charset="utf-8" />
                                      <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                      <body>
                                      <div id="map" style="width: 980px; height: 530px"></div>
                                      <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                      <script>
                                      var map = L.map('map').setView([53.94125,14.19014], 13);
                                      mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                      L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                      var polyline = L.polyline([ 
                                      [53.94125, 14.19014],[53.9413, 14.19045],[53.94141, 14.18996],[53.94177, 14.1901],[53.94191, 14.19043],[53.94171, 14.1909],[53.94149, 14.19132],[53.94124, 14.19177],[53.94099, 14.19223],[53.94076, 14.19271],[53.94054, 14.19311],[53.94033, 14.19355],[53.9401, 14.194],[53.93983, 14.19445],[53.9396, 14.19491],[53.9394, 14.19538],[53.93914, 14.19582],[53.9389, 14.19627],[53.93869, 14.19669],[53.9385, 14.19715],[53.9383, 14.19767],[53.93809, 14.19818],[53.93792, 14.19858],[53.9377, 14.19911],[53.93754, 14.19949],[53.93731, 14.20002],[53.93706, 14.20057],[53.9369, 14.20097],[53.93671, 14.20141],[53.93648, 14.20196],[53.93629, 14.20239],[53.93604, 14.20295],[53.93586, 14.20335],[53.93567, 14.20376],[53.93541, 14.20428],[53.9352, 14.20478],[53.93502, 14.20518],[53.93483, 14.20557],[53.93459, 14.20611],[53.93435, 14.20663],[53.93417, 14.20704],[53.93397, 14.20744],[53.93377, 14.20797],[53.93356, 14.2084],[53.93332, 14.20893],[53.93315, 14.20936],[53.93293, 14.20983],[53.9327, 14.21035],[53.93254, 14.21078],[53.93232, 14.21134],[53.93218, 14.21171],[53.93196, 14.21228],[53.93182, 14.21267],[53.93155, 14.21329],[53.93134, 14.21377],[53.93115, 14.21422],[53.93092, 14.21479],[53.9307, 14.21526],[53.93052, 14.21578],[53.93035, 14.21625],[53.93018, 14.21669],[53.93, 14.21714],[53.92977, 14.2177],[53.92961, 14.2181],[53.92937, 14.21864],[53.9292, 14.2191],[53.929, 14.21962],[53.92881, 14.22015],[53.9286, 14.22066],[53.92841, 14.22118],[53.92825, 14.22151],[53.92807, 14.22202],[53.92788, 14.2225],[53.92764, 14.22317],[53.92752, 14.2235],[53.92736, 14.22401],[53.92709, 14.2246],[53.92688, 14.22515],[53.92669, 14.22553],[53.92648, 14.22598],[53.92638, 14.22651],[53.92621, 14.22715],[53.92605, 14.22765],[53.9259, 14.22814],[53.92573, 14.22869],[53.92556, 14.22915],[53.9253, 14.22952],[53.92517, 14.22997],[53.92505, 14.23042],[53.92492, 14.23088],[53.92472, 14.23155],[53.92456, 14.23205],[53.92439, 14.23251],[53.92427, 14.23296],[53.92408, 14.23352],[53.92394, 14.23399],[53.92376, 14.23451],[53.92358, 14.23514],[53.92341, 14.2356],[53.92321, 14.2362],[53.92312, 14.23661],[53.92295, 14.23724],[53.9228, 14.23769],[53.92266, 14.23818],[53.92248, 14.23873],[53.92232, 14.23921],[53.92216, 14.23975],[53.92198, 14.24034],[53.92183, 14.24087],[53.92168, 14.24136],[53.92154, 14.24191],[53.92136, 14.24247],[53.92121, 14.24301],[53.92107, 14.24356],[53.92098, 14.24407],[53.92088, 14.24465],[53.92078, 14.2452],[53.92068, 14.24579],[53.92059, 14.24635],[53.92049, 14.24689],[53.92036, 14.24754],[53.92026, 14.24808],[53.92017, 14.24857],[53.92023, 14.24903],[53.92027, 14.24954],[53.92018, 14.25011],[53.92011, 14.25066],[53.91999, 14.25118],[53.91993, 14.25182],[53.91981, 14.25242],[53.91973, 14.25302],[53.91964, 14.25319],[53.91961, 14.25343],[53.91972, 14.25293],[53.9198, 14.25227],[53.9199, 14.25167],[53.91998, 14.25109],[53.92012, 14.25052],[53.92023, 14.24992],[53.9203, 14.24936],[53.9204, 14.24878],[53.92051, 14.24819],[53.9206, 14.24758],[53.9207, 14.24705],[53.92073, 14.24649],[53.92059, 14.24612],[53.92071, 14.24548],[53.92081, 14.24498],[53.92091, 14.24444],[53.92101, 14.24381],[53.92112, 14.24332],[53.92126, 14.24274],[53.92142, 14.24224],[53.92157, 14.24169],[53.92174, 14.24113],[53.92188, 14.24065],[53.92205, 14.24007],[53.92217, 14.23963],[53.92234, 14.23905],[53.92249, 14.23857],[53.92265, 14.23799],[53.92278, 14.2375],[53.92294, 14.23696],[53.92313, 14.23641],[53.92329, 14.23587],[53.92339, 14.23548],[53.92358, 14.23489],[53.92378, 14.23433],[53.92392, 14.23389],[53.9241, 14.23333],[53.92427, 14.23277],[53.92441, 14.23236],[53.92459, 14.23181],[53.92477, 14.23126],[53.92492, 14.23073],[53.9251, 14.23017],[53.92518, 14.22961],[53.92544, 14.22941],[53.92561, 14.22892],[53.92575, 14.22843],[53.92591, 14.2279],[53.92603, 14.22753],[53.92626, 14.22684],[53.92637, 14.22635],[53.92651, 14.22589],[53.92677, 14.22538],[53.927, 14.22481],[53.92715, 14.22435],[53.9273, 14.22394],[53.92751, 14.22337],[53.92767, 14.22289],[53.92783, 14.22241],[53.928, 14.22202],[53.92817, 14.22151],[53.92839, 14.22093],[53.92862, 14.22037],[53.92876, 14.21998],[53.92896, 14.21947],[53.92912, 14.21907],[53.9293, 14.21854],[53.9295, 14.21799],[53.92971, 14.21753],[53.9299, 14.21704],[53.93011, 14.21652],[53.9303, 14.21604],[53.93052, 14.21552],[53.93071, 14.21505],[53.93092, 14.21453],[53.93108, 14.21412],[53.93132, 14.21359],[53.9315, 14.21321],[53.93169, 14.21267],[53.9319, 14.2122],[53.9321, 14.2117],[53.9323, 14.2112],[53.93251, 14.21068],[53.9327, 14.21025],[53.93291, 14.20976],[53.93313, 14.20925],[53.93332, 14.2088],[53.93354, 14.20828],[53.93376, 14.20783],[53.93396, 14.20735],[53.93418, 14.20688],[53.93439, 14.2064],[53.93457, 14.20598],[53.9348, 14.20549],[53.93503, 14.205],[53.93525, 14.20452],[53.93548, 14.20405],[53.93572, 14.20353],[53.93596, 14.20307],[53.93611, 14.20271],[53.93637, 14.20212],[53.93655, 14.20175],[53.93677, 14.20127],[53.93697, 14.20072],[53.93719, 14.20023],[53.93734, 14.19987],[53.93757, 14.19936],[53.9378, 14.19879],[53.93798, 14.19837],[53.93818, 14.19789],[53.93835, 14.19747],[53.93857, 14.19694],[53.93879, 14.19647],[53.93903, 14.19598],[53.93923, 14.19559],[53.93949, 14.1951],[53.93969, 14.19469],[53.9399, 14.19431],[53.94016, 14.1938],[53.94042, 14.19332],[53.94061, 14.19293],[53.94086, 14.19244],[53.94107, 14.19204],[53.94133, 14.19151],[53.94153, 14.19112],[53.94175, 14.19066],[53.942, 14.1902],[53.94221, 14.1898],[53.94244, 14.18937],[53.94269, 14.18889],[53.9429, 14.18847],[53.94315, 14.18811],[53.94341, 14.18779],[53.9437, 14.1873],[53.94393, 14.1869],[53.94417, 14.18647],[53.94442, 14.18604],[53.94461, 14.18571],[53.94485, 14.18527],[53.9451, 14.18484],[53.94534, 14.18443],[53.94558, 14.18402],[53.94583, 14.1836],[53.94613, 14.18307],[53.94635, 14.18264],[53.94662, 14.1823],[53.94687, 14.18187],[53.94707, 14.18154],[53.94733, 14.18109],[53.94758, 14.18066],[53.9478, 14.18032],[53.94806, 14.17987],[53.94833, 14.17943],[53.9486, 14.17898],[53.94881, 14.17864],[53.94909, 14.17818],[53.94933, 14.17782],[53.9496, 14.17736],[53.94981, 14.17702],[53.95008, 14.17661],[53.95036, 14.17626],[53.95065, 14.17584],[53.95092, 14.17542],[53.95113, 14.17513],[53.95142, 14.17474],[53.95169, 14.17437],[53.95195, 14.17399],[53.95224, 14.17356],[53.95243, 14.17328],[53.95271, 14.17286],[53.95296, 14.17249],[53.95328, 14.1721],[53.95358, 14.1719],[53.95394, 14.17151],[53.95426, 14.17127],[53.95448, 14.17158],[53.95475, 14.1719],[53.95512, 14.17175],[53.95538, 14.17145],[53.95565, 14.17115],[53.95585, 14.17067],[53.95612, 14.1702],[53.95637, 14.16991],[53.9567, 14.16956],[53.95697, 14.16937],[53.95716, 14.1689],[53.95731, 14.16849],[53.95766, 14.16808],[53.95794, 14.16774],[53.9582, 14.16736],[53.95846, 14.167],[53.95866, 14.16657],[53.95889, 14.16606],[53.95912, 14.16564],[53.9593, 14.16513],[53.9595, 14.1648],[53.95977, 14.16438],[53.96006, 14.16394],[53.96026, 14.16361],[53.96056, 14.16316],[53.96077, 14.16281],[53.96105, 14.16234],[53.96125, 14.16203],[53.96153, 14.1616],[53.96183, 14.16114],[53.96195, 14.1606],[53.96213, 14.16012],[53.96242, 14.1597],[53.96261, 14.15939],[53.96291, 14.15895],[53.96316, 14.15856],[53.96343, 14.15816],[53.9637, 14.15775],[53.96396, 14.15735],[53.96422, 14.15697],[53.96451, 14.15653],[53.96477, 14.15614],[53.96498, 14.15584],[53.96525, 14.15543],[53.96553, 14.15502],[53.96582, 14.15458],[53.96605, 14.15424],[53.96628, 14.15391],[53.96655, 14.15341],[53.96675, 14.15303],[53.96702, 14.15255],[53.96726, 14.15208],[53.96745, 14.15175],[53.96781, 14.15127],[53.96807, 14.15099],[53.9683, 14.15071],[53.96863, 14.15035],[53.96894, 14.15],[53.96915, 14.1497],[53.96946, 14.14931],[53.96977, 14.14892],[53.97, 14.14862],[53.9703, 14.14823],[53.9706, 14.14784],[53.97083, 14.14754],[53.97113, 14.14714],[53.97143, 14.14674],[53.97168, 14.14641],[53.97195, 14.14607],[53.97201, 14.14598],[53.97206, 14.14589],[53.97175, 14.14631],[53.97149, 14.14663],[53.97116, 14.14705],[53.97094, 14.14734],[53.97066, 14.14772],[53.97041, 14.14804],[53.97009, 14.14849],[53.96986, 14.14879],[53.9696, 14.14913],[53.96934, 14.14946],[53.969, 14.14989],[53.96874, 14.15021],[53.96839, 14.1506],[53.96819, 14.15082],[53.96788, 14.15117],[53.96759, 14.15154],[53.96729, 14.152],[53.96711, 14.15236],[53.96687, 14.15281],[53.96661, 14.1533],[53.96639, 14.15369],[53.96613, 14.15413],[53.96588, 14.15449],[53.96564, 14.15483],[53.96532, 14.15529],[53.9651, 14.15566],[53.96488, 14.15599],[53.96461, 14.1564],[53.96434, 14.15679],[53.96408, 14.15718],[53.96381, 14.15759],[53.96354, 14.158],[53.96327, 14.1584],[53.96301, 14.15882],[53.96275, 14.1592],[53.9625, 14.15958],[53.96224, 14.15996],[53.962, 14.16041],[53.96189, 14.16098],[53.96167, 14.16141],[53.96141, 14.16181],[53.96115, 14.16226],[53.96093, 14.1626],[53.96064, 14.16304],[53.96037, 14.16347],[53.96016, 14.1638],[53.95988, 14.16426],[53.95966, 14.1646],[53.95937, 14.16503],[53.95918, 14.16553],[53.95903, 14.16597],[53.95872, 14.16632],[53.95855, 14.16685],[53.9583, 14.16721],[53.958, 14.16761],[53.95771, 14.16799],[53.95748, 14.16827],[53.95721, 14.16867],[53.95709, 14.16921],[53.95679, 14.1695],[53.95649, 14.16979],[53.9564, 14.16985],[53.95595, 14.17047],[53.95581, 14.17098],[53.95552, 14.17135],[53.95523, 14.17172],[53.95491, 14.17191],[53.95459, 14.17173],[53.95435, 14.17128],[53.95411, 14.17137],[53.95374, 14.17177],[53.95352, 14.17196],[53.95319, 14.17232],[53.95297, 14.17257],[53.95267, 14.17298],[53.95238, 14.17341],[53.95215, 14.17373],[53.95185, 14.17418],[53.95163, 14.17451],[53.95131, 14.17492],[53.95108, 14.17522],[53.95076, 14.17567],[53.95052, 14.17605],[53.95027, 14.17641],[53.95002, 14.17676],[53.9497, 14.17724],[53.94943, 14.17768],[53.94919, 14.17806],[53.94898, 14.17839],[53.94872, 14.17884],[53.94848, 14.17922],[53.94823, 14.17964],[53.94797, 14.18006],[53.94771, 14.18046],[53.94748, 14.18083],[53.9472, 14.1813],[53.94695, 14.18173],[53.94672, 14.18214],[53.94645, 14.18252],[53.94621, 14.18287],[53.94599, 14.18328],[53.94576, 14.18367],[53.94503, 14.18489],[53.94479, 14.1853],[53.94453, 14.18574],[53.94429, 14.18621],[53.94405, 14.18661],[53.94381, 14.18708],[53.94357, 14.18748],[53.94331, 14.1879],[53.94308, 14.18829],[53.94286, 14.18872],[53.94256, 14.18924],[53.94234, 14.1896],[53.94212, 14.19007],[53.9418, 14.19007],[53.94149, 14.18993],[53.94129, 14.19042],[53.94125, 14.19021]
                                      ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                      </script>
                                      </body>
                                      </html>
                                      
                                      

                                      Und das ist das Bild und die html, wo der Mittelpunkt der map mit dem in der html übereinstimmt.

                                      Tour_5.jpg

                                      code_text
                                      
                                      K 1 Antwort Letzte Antwort
                                      0
                                      • K Kanumouse

                                        @bahnuhr
                                        Das ist das Bild und die html für die Route, wo der Mittelpunkt nicht mit dem in der Datei eingetragenem übereinstimmt.

                                        Tour_1.jpg

                                        <!DOCTYPE html>
                                        <html>
                                        <head>
                                        <title>Simple Leaflet Map</title>
                                        <meta charset="utf-8" />
                                        <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                        <body>
                                        <div id="map" style="width: 980px; height: 530px"></div>
                                        <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                        <script>
                                        var map = L.map('map').setView([53.94125,14.19014], 13);
                                        mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                        L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                        var polyline = L.polyline([ 
                                        [53.94125, 14.19014],[53.9413, 14.19045],[53.94141, 14.18996],[53.94177, 14.1901],[53.94191, 14.19043],[53.94171, 14.1909],[53.94149, 14.19132],[53.94124, 14.19177],[53.94099, 14.19223],[53.94076, 14.19271],[53.94054, 14.19311],[53.94033, 14.19355],[53.9401, 14.194],[53.93983, 14.19445],[53.9396, 14.19491],[53.9394, 14.19538],[53.93914, 14.19582],[53.9389, 14.19627],[53.93869, 14.19669],[53.9385, 14.19715],[53.9383, 14.19767],[53.93809, 14.19818],[53.93792, 14.19858],[53.9377, 14.19911],[53.93754, 14.19949],[53.93731, 14.20002],[53.93706, 14.20057],[53.9369, 14.20097],[53.93671, 14.20141],[53.93648, 14.20196],[53.93629, 14.20239],[53.93604, 14.20295],[53.93586, 14.20335],[53.93567, 14.20376],[53.93541, 14.20428],[53.9352, 14.20478],[53.93502, 14.20518],[53.93483, 14.20557],[53.93459, 14.20611],[53.93435, 14.20663],[53.93417, 14.20704],[53.93397, 14.20744],[53.93377, 14.20797],[53.93356, 14.2084],[53.93332, 14.20893],[53.93315, 14.20936],[53.93293, 14.20983],[53.9327, 14.21035],[53.93254, 14.21078],[53.93232, 14.21134],[53.93218, 14.21171],[53.93196, 14.21228],[53.93182, 14.21267],[53.93155, 14.21329],[53.93134, 14.21377],[53.93115, 14.21422],[53.93092, 14.21479],[53.9307, 14.21526],[53.93052, 14.21578],[53.93035, 14.21625],[53.93018, 14.21669],[53.93, 14.21714],[53.92977, 14.2177],[53.92961, 14.2181],[53.92937, 14.21864],[53.9292, 14.2191],[53.929, 14.21962],[53.92881, 14.22015],[53.9286, 14.22066],[53.92841, 14.22118],[53.92825, 14.22151],[53.92807, 14.22202],[53.92788, 14.2225],[53.92764, 14.22317],[53.92752, 14.2235],[53.92736, 14.22401],[53.92709, 14.2246],[53.92688, 14.22515],[53.92669, 14.22553],[53.92648, 14.22598],[53.92638, 14.22651],[53.92621, 14.22715],[53.92605, 14.22765],[53.9259, 14.22814],[53.92573, 14.22869],[53.92556, 14.22915],[53.9253, 14.22952],[53.92517, 14.22997],[53.92505, 14.23042],[53.92492, 14.23088],[53.92472, 14.23155],[53.92456, 14.23205],[53.92439, 14.23251],[53.92427, 14.23296],[53.92408, 14.23352],[53.92394, 14.23399],[53.92376, 14.23451],[53.92358, 14.23514],[53.92341, 14.2356],[53.92321, 14.2362],[53.92312, 14.23661],[53.92295, 14.23724],[53.9228, 14.23769],[53.92266, 14.23818],[53.92248, 14.23873],[53.92232, 14.23921],[53.92216, 14.23975],[53.92198, 14.24034],[53.92183, 14.24087],[53.92168, 14.24136],[53.92154, 14.24191],[53.92136, 14.24247],[53.92121, 14.24301],[53.92107, 14.24356],[53.92098, 14.24407],[53.92088, 14.24465],[53.92078, 14.2452],[53.92068, 14.24579],[53.92059, 14.24635],[53.92049, 14.24689],[53.92036, 14.24754],[53.92026, 14.24808],[53.92017, 14.24857],[53.92023, 14.24903],[53.92027, 14.24954],[53.92018, 14.25011],[53.92011, 14.25066],[53.91999, 14.25118],[53.91993, 14.25182],[53.91981, 14.25242],[53.91973, 14.25302],[53.91964, 14.25319],[53.91961, 14.25343],[53.91972, 14.25293],[53.9198, 14.25227],[53.9199, 14.25167],[53.91998, 14.25109],[53.92012, 14.25052],[53.92023, 14.24992],[53.9203, 14.24936],[53.9204, 14.24878],[53.92051, 14.24819],[53.9206, 14.24758],[53.9207, 14.24705],[53.92073, 14.24649],[53.92059, 14.24612],[53.92071, 14.24548],[53.92081, 14.24498],[53.92091, 14.24444],[53.92101, 14.24381],[53.92112, 14.24332],[53.92126, 14.24274],[53.92142, 14.24224],[53.92157, 14.24169],[53.92174, 14.24113],[53.92188, 14.24065],[53.92205, 14.24007],[53.92217, 14.23963],[53.92234, 14.23905],[53.92249, 14.23857],[53.92265, 14.23799],[53.92278, 14.2375],[53.92294, 14.23696],[53.92313, 14.23641],[53.92329, 14.23587],[53.92339, 14.23548],[53.92358, 14.23489],[53.92378, 14.23433],[53.92392, 14.23389],[53.9241, 14.23333],[53.92427, 14.23277],[53.92441, 14.23236],[53.92459, 14.23181],[53.92477, 14.23126],[53.92492, 14.23073],[53.9251, 14.23017],[53.92518, 14.22961],[53.92544, 14.22941],[53.92561, 14.22892],[53.92575, 14.22843],[53.92591, 14.2279],[53.92603, 14.22753],[53.92626, 14.22684],[53.92637, 14.22635],[53.92651, 14.22589],[53.92677, 14.22538],[53.927, 14.22481],[53.92715, 14.22435],[53.9273, 14.22394],[53.92751, 14.22337],[53.92767, 14.22289],[53.92783, 14.22241],[53.928, 14.22202],[53.92817, 14.22151],[53.92839, 14.22093],[53.92862, 14.22037],[53.92876, 14.21998],[53.92896, 14.21947],[53.92912, 14.21907],[53.9293, 14.21854],[53.9295, 14.21799],[53.92971, 14.21753],[53.9299, 14.21704],[53.93011, 14.21652],[53.9303, 14.21604],[53.93052, 14.21552],[53.93071, 14.21505],[53.93092, 14.21453],[53.93108, 14.21412],[53.93132, 14.21359],[53.9315, 14.21321],[53.93169, 14.21267],[53.9319, 14.2122],[53.9321, 14.2117],[53.9323, 14.2112],[53.93251, 14.21068],[53.9327, 14.21025],[53.93291, 14.20976],[53.93313, 14.20925],[53.93332, 14.2088],[53.93354, 14.20828],[53.93376, 14.20783],[53.93396, 14.20735],[53.93418, 14.20688],[53.93439, 14.2064],[53.93457, 14.20598],[53.9348, 14.20549],[53.93503, 14.205],[53.93525, 14.20452],[53.93548, 14.20405],[53.93572, 14.20353],[53.93596, 14.20307],[53.93611, 14.20271],[53.93637, 14.20212],[53.93655, 14.20175],[53.93677, 14.20127],[53.93697, 14.20072],[53.93719, 14.20023],[53.93734, 14.19987],[53.93757, 14.19936],[53.9378, 14.19879],[53.93798, 14.19837],[53.93818, 14.19789],[53.93835, 14.19747],[53.93857, 14.19694],[53.93879, 14.19647],[53.93903, 14.19598],[53.93923, 14.19559],[53.93949, 14.1951],[53.93969, 14.19469],[53.9399, 14.19431],[53.94016, 14.1938],[53.94042, 14.19332],[53.94061, 14.19293],[53.94086, 14.19244],[53.94107, 14.19204],[53.94133, 14.19151],[53.94153, 14.19112],[53.94175, 14.19066],[53.942, 14.1902],[53.94221, 14.1898],[53.94244, 14.18937],[53.94269, 14.18889],[53.9429, 14.18847],[53.94315, 14.18811],[53.94341, 14.18779],[53.9437, 14.1873],[53.94393, 14.1869],[53.94417, 14.18647],[53.94442, 14.18604],[53.94461, 14.18571],[53.94485, 14.18527],[53.9451, 14.18484],[53.94534, 14.18443],[53.94558, 14.18402],[53.94583, 14.1836],[53.94613, 14.18307],[53.94635, 14.18264],[53.94662, 14.1823],[53.94687, 14.18187],[53.94707, 14.18154],[53.94733, 14.18109],[53.94758, 14.18066],[53.9478, 14.18032],[53.94806, 14.17987],[53.94833, 14.17943],[53.9486, 14.17898],[53.94881, 14.17864],[53.94909, 14.17818],[53.94933, 14.17782],[53.9496, 14.17736],[53.94981, 14.17702],[53.95008, 14.17661],[53.95036, 14.17626],[53.95065, 14.17584],[53.95092, 14.17542],[53.95113, 14.17513],[53.95142, 14.17474],[53.95169, 14.17437],[53.95195, 14.17399],[53.95224, 14.17356],[53.95243, 14.17328],[53.95271, 14.17286],[53.95296, 14.17249],[53.95328, 14.1721],[53.95358, 14.1719],[53.95394, 14.17151],[53.95426, 14.17127],[53.95448, 14.17158],[53.95475, 14.1719],[53.95512, 14.17175],[53.95538, 14.17145],[53.95565, 14.17115],[53.95585, 14.17067],[53.95612, 14.1702],[53.95637, 14.16991],[53.9567, 14.16956],[53.95697, 14.16937],[53.95716, 14.1689],[53.95731, 14.16849],[53.95766, 14.16808],[53.95794, 14.16774],[53.9582, 14.16736],[53.95846, 14.167],[53.95866, 14.16657],[53.95889, 14.16606],[53.95912, 14.16564],[53.9593, 14.16513],[53.9595, 14.1648],[53.95977, 14.16438],[53.96006, 14.16394],[53.96026, 14.16361],[53.96056, 14.16316],[53.96077, 14.16281],[53.96105, 14.16234],[53.96125, 14.16203],[53.96153, 14.1616],[53.96183, 14.16114],[53.96195, 14.1606],[53.96213, 14.16012],[53.96242, 14.1597],[53.96261, 14.15939],[53.96291, 14.15895],[53.96316, 14.15856],[53.96343, 14.15816],[53.9637, 14.15775],[53.96396, 14.15735],[53.96422, 14.15697],[53.96451, 14.15653],[53.96477, 14.15614],[53.96498, 14.15584],[53.96525, 14.15543],[53.96553, 14.15502],[53.96582, 14.15458],[53.96605, 14.15424],[53.96628, 14.15391],[53.96655, 14.15341],[53.96675, 14.15303],[53.96702, 14.15255],[53.96726, 14.15208],[53.96745, 14.15175],[53.96781, 14.15127],[53.96807, 14.15099],[53.9683, 14.15071],[53.96863, 14.15035],[53.96894, 14.15],[53.96915, 14.1497],[53.96946, 14.14931],[53.96977, 14.14892],[53.97, 14.14862],[53.9703, 14.14823],[53.9706, 14.14784],[53.97083, 14.14754],[53.97113, 14.14714],[53.97143, 14.14674],[53.97168, 14.14641],[53.97195, 14.14607],[53.97201, 14.14598],[53.97206, 14.14589],[53.97175, 14.14631],[53.97149, 14.14663],[53.97116, 14.14705],[53.97094, 14.14734],[53.97066, 14.14772],[53.97041, 14.14804],[53.97009, 14.14849],[53.96986, 14.14879],[53.9696, 14.14913],[53.96934, 14.14946],[53.969, 14.14989],[53.96874, 14.15021],[53.96839, 14.1506],[53.96819, 14.15082],[53.96788, 14.15117],[53.96759, 14.15154],[53.96729, 14.152],[53.96711, 14.15236],[53.96687, 14.15281],[53.96661, 14.1533],[53.96639, 14.15369],[53.96613, 14.15413],[53.96588, 14.15449],[53.96564, 14.15483],[53.96532, 14.15529],[53.9651, 14.15566],[53.96488, 14.15599],[53.96461, 14.1564],[53.96434, 14.15679],[53.96408, 14.15718],[53.96381, 14.15759],[53.96354, 14.158],[53.96327, 14.1584],[53.96301, 14.15882],[53.96275, 14.1592],[53.9625, 14.15958],[53.96224, 14.15996],[53.962, 14.16041],[53.96189, 14.16098],[53.96167, 14.16141],[53.96141, 14.16181],[53.96115, 14.16226],[53.96093, 14.1626],[53.96064, 14.16304],[53.96037, 14.16347],[53.96016, 14.1638],[53.95988, 14.16426],[53.95966, 14.1646],[53.95937, 14.16503],[53.95918, 14.16553],[53.95903, 14.16597],[53.95872, 14.16632],[53.95855, 14.16685],[53.9583, 14.16721],[53.958, 14.16761],[53.95771, 14.16799],[53.95748, 14.16827],[53.95721, 14.16867],[53.95709, 14.16921],[53.95679, 14.1695],[53.95649, 14.16979],[53.9564, 14.16985],[53.95595, 14.17047],[53.95581, 14.17098],[53.95552, 14.17135],[53.95523, 14.17172],[53.95491, 14.17191],[53.95459, 14.17173],[53.95435, 14.17128],[53.95411, 14.17137],[53.95374, 14.17177],[53.95352, 14.17196],[53.95319, 14.17232],[53.95297, 14.17257],[53.95267, 14.17298],[53.95238, 14.17341],[53.95215, 14.17373],[53.95185, 14.17418],[53.95163, 14.17451],[53.95131, 14.17492],[53.95108, 14.17522],[53.95076, 14.17567],[53.95052, 14.17605],[53.95027, 14.17641],[53.95002, 14.17676],[53.9497, 14.17724],[53.94943, 14.17768],[53.94919, 14.17806],[53.94898, 14.17839],[53.94872, 14.17884],[53.94848, 14.17922],[53.94823, 14.17964],[53.94797, 14.18006],[53.94771, 14.18046],[53.94748, 14.18083],[53.9472, 14.1813],[53.94695, 14.18173],[53.94672, 14.18214],[53.94645, 14.18252],[53.94621, 14.18287],[53.94599, 14.18328],[53.94576, 14.18367],[53.94503, 14.18489],[53.94479, 14.1853],[53.94453, 14.18574],[53.94429, 14.18621],[53.94405, 14.18661],[53.94381, 14.18708],[53.94357, 14.18748],[53.94331, 14.1879],[53.94308, 14.18829],[53.94286, 14.18872],[53.94256, 14.18924],[53.94234, 14.1896],[53.94212, 14.19007],[53.9418, 14.19007],[53.94149, 14.18993],[53.94129, 14.19042],[53.94125, 14.19021]
                                        ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                        </script>
                                        </body>
                                        </html>
                                        
                                        

                                        Und das ist das Bild und die html, wo der Mittelpunkt der map mit dem in der html übereinstimmt.

                                        Tour_5.jpg

                                        code_text
                                        
                                        K Offline
                                        K Offline
                                        Kanumouse
                                        schrieb am zuletzt editiert von
                                        #86

                                        Ergänzung für Tour_5 html (hat bei vorhergehenden Eintrag nicht geklappt).

                                        <!DOCTYPE html>
                                        <html>
                                        <head>
                                        <title>Simple Leaflet Map</title>
                                        <meta charset="utf-8" />
                                        <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                        <body>
                                        <div id="map" style="width: 980px; height: 530px"></div>
                                        <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                        <script>
                                        var map = L.map('map').setView([52.25555,14.41233], 13);
                                        mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                        L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                        var polyline = L.polyline([ 
                                        [52.25555, 14.41233],[52.25563, 14.41342],[52.25507, 14.41464],[52.25538, 14.41556],[52.2561, 14.41624],[52.2561, 14.41714],[52.25533, 14.41794],[52.25458, 14.41867],[52.25391, 14.41933],[52.25314, 14.42007],[52.25243, 14.42077],[52.25243, 14.42202],[52.25278, 14.42322],[52.25315, 14.42453],[52.25348, 14.4258],[52.25372, 14.42714],[52.25334, 14.42833],[52.25298, 14.42961],[52.25265, 14.43086],[52.25235, 14.43206],[52.25201, 14.43347],[52.2517, 14.43473],[52.25142, 14.43591],[52.25108, 14.43737],[52.25077, 14.43863],[52.25041, 14.43981],[52.25003, 14.4412],[52.24966, 14.44255],[52.24935, 14.44381],[52.24907, 14.44512],[52.24885, 14.44634],[52.24863, 14.4477],[52.24847, 14.44908],[52.24829, 14.45046],[52.24815, 14.45182],[52.24797, 14.45319],[52.24785, 14.45452],[52.24776, 14.45586],[52.2478, 14.45732],[52.24794, 14.45866],[52.24807, 14.46],[52.24824, 14.46147],[52.2484, 14.46282],[52.2485, 14.46418],[52.24829, 14.46544],[52.24795, 14.4668],[52.24762, 14.46799],[52.24727, 14.46918],[52.24685, 14.47058],[52.24656, 14.47188],[52.24648, 14.47314],[52.2463, 14.47449],[52.24607, 14.47584],[52.24546, 14.47661],[52.24524, 14.47808],[52.24498, 14.47932],[52.24439, 14.48036],[52.24377, 14.48137],[52.24314, 14.48209],[52.2429, 14.48344],[52.24283, 14.48475],[52.24215, 14.48574],[52.24173, 14.48695],[52.24119, 14.48793],[52.24083, 14.48922],[52.24053, 14.49056],[52.2403, 14.49188],[52.24028, 14.4931],[52.24058, 14.49443],[52.24067, 14.49588],[52.24042, 14.49726],[52.24031, 14.49846],[52.24007, 14.49978],[52.23985, 14.50111],[52.23961, 14.50261],[52.23972, 14.50379],[52.23991, 14.50521],[52.23972, 14.50653],[52.23926, 14.50768],[52.23879, 14.5087],[52.23854, 14.51008],[52.23832, 14.51129],[52.23812, 14.51267],[52.2384, 14.51398],[52.23852, 14.51535],[52.23827, 14.51664],[52.23768, 14.51763],[52.23714, 14.51872],[52.23734, 14.51991],[52.23744, 14.52134],[52.23733, 14.52279],[52.23705, 14.52398],[52.23661, 14.52524],[52.23656, 14.52656],[52.23678, 14.52798],[52.23692, 14.52929],[52.23728, 14.53046],[52.23804, 14.5311],[52.23761, 14.53177],[52.2374, 14.53289],[52.23737, 14.53419],[52.23731, 14.53558],[52.23745, 14.53683],[52.2375, 14.53827],[52.23775, 14.53962],[52.23803, 14.54079],[52.23817, 14.54218],[52.23882, 14.5431],[52.23921, 14.54434],[52.23946, 14.54534],[52.23955, 14.54652],[52.23972, 14.54786],[52.23981, 14.5494],[52.23992, 14.55072],[52.23997, 14.55207],[52.24009, 14.55343],[52.24042, 14.55466],[52.24082, 14.55593],[52.24126, 14.55719],[52.24165, 14.55849],[52.24199, 14.55964],[52.24239, 14.56096],[52.24273, 14.56224],[52.24309, 14.5635],[52.24346, 14.56478],[52.24383, 14.56609],[52.24415, 14.56733],[52.24438, 14.56855],[52.24451, 14.56996],[52.24462, 14.57121],[52.24471, 14.57269],[52.24463, 14.5738],[52.24385, 14.57426],[52.243, 14.5743],[52.24213, 14.57433],[52.24136, 14.57481],[52.24075, 14.57559],[52.24007, 14.57665],[52.23947, 14.57745],[52.2388, 14.5783],[52.23868, 14.57957],[52.23871, 14.58103],[52.23874, 14.58237],[52.23878, 14.58371],[52.2388, 14.58526],[52.2388, 14.58653],[52.23882, 14.5879],[52.23884, 14.58943],[52.23886, 14.59084],[52.23889, 14.59224],[52.23891, 14.59356],[52.23892, 14.59487],[52.23891, 14.5963],[52.23882, 14.59767],[52.2383, 14.59874],[52.23778, 14.59976],[52.23721, 14.60085],[52.23707, 14.60195],[52.23761, 14.6031],[52.2381, 14.60413],[52.23864, 14.60522],[52.23919, 14.60635],[52.2397, 14.60737],[52.24027, 14.60855],[52.24078, 14.60958],[52.24128, 14.61062],[52.24187, 14.61183],[52.24238, 14.6129],[52.24289, 14.61395],[52.24339, 14.615],[52.2439, 14.61605],[52.24448, 14.61725],[52.24499, 14.61831],[52.24552, 14.61941],[52.24603, 14.62049],[52.24657, 14.62162],[52.24712, 14.62277],[52.24759, 14.62372],[52.24811, 14.62482],[52.24865, 14.62591],[52.24917, 14.627],[52.24978, 14.62827],[52.25026, 14.62926],[52.2508, 14.63041],[52.25134, 14.63152],[52.25188, 14.63264],[52.25241, 14.63359],[52.25302, 14.63461],[52.25362, 14.63561],[52.25422, 14.63662],[52.25484, 14.63765],[52.25553, 14.63856],[52.25611, 14.63932],[52.25679, 14.64022],[52.25746, 14.64113],[52.25817, 14.64199],[52.25877, 14.64277],[52.25945, 14.64366],[52.26014, 14.64459],[52.26049, 14.6457],[52.26059, 14.64709],[52.26065, 14.64841],[52.26078, 14.64991],[52.26096, 14.65123],[52.26104, 14.65257],[52.26104, 14.65392],[52.26093, 14.65528],[52.26083, 14.65681],[52.2607, 14.65813],[52.26056, 14.65945],[52.26035, 14.66096],[52.26012, 14.66227],[52.2598, 14.66355],[52.25951, 14.66484],[52.2592, 14.6662],[52.25881, 14.66739],[52.25835, 14.66861],[52.25794, 14.66982],[52.25753, 14.67103],[52.25713, 14.67222],[52.25673, 14.67343],[52.25632, 14.67462],[52.25592, 14.6758],[52.25547, 14.67713],[52.25508, 14.67827],[52.25465, 14.67956],[52.25423, 14.68066],[52.25368, 14.6819],[52.2532, 14.68299],[52.25276, 14.68409],[52.25236, 14.68526],[52.25192, 14.68656],[52.25143, 14.68761],[52.2508, 14.68871],[52.25023, 14.68964],[52.24957, 14.69068],[52.24899, 14.69155],[52.24834, 14.6925],[52.24771, 14.69347],[52.24706, 14.69434],[52.24635, 14.69513],[52.24569, 14.69598],[52.24501, 14.69688],[52.24434, 14.69776],[52.24377, 14.6986],[52.24311, 14.69971],[52.24258, 14.70069],[52.24198, 14.70175],[52.24136, 14.70258],[52.24105, 14.70286],[52.2413, 14.70252],[52.24194, 14.70182],[52.24253, 14.70079],[52.24308, 14.6998],[52.24368, 14.69877],[52.24432, 14.6978],[52.24493, 14.69698],[52.24563, 14.69606],[52.24626, 14.69525],[52.24699, 14.69441],[52.24763, 14.69356],[52.2483, 14.69253],[52.24892, 14.69165],[52.24951, 14.69074],[52.25019, 14.6897],[52.25078, 14.68875],[52.25134, 14.68775],[52.25187, 14.6867],[52.25225, 14.68551],[52.2527, 14.68421],[52.25313, 14.6831],[52.2536, 14.682],[52.25415, 14.68079],[52.25459, 14.67965],[52.25504, 14.67831],[52.25545, 14.67713],[52.25585, 14.67593],[52.25626, 14.67475],[52.25665, 14.67355],[52.25705, 14.67235],[52.25751, 14.67102],[52.25792, 14.66981],[52.25832, 14.66863],[52.25876, 14.66751],[52.25919, 14.66622],[52.25948, 14.66496],[52.25977, 14.66367],[52.26007, 14.66238],[52.26032, 14.66106],[52.26052, 14.65968],[52.26067, 14.65832],[52.2608, 14.65695],[52.26089, 14.65553],[52.26102, 14.65411],[52.26104, 14.65286],[52.26099, 14.65145],[52.2608, 14.65006],[52.26064, 14.64873],[52.26059, 14.6473],[52.26049, 14.64589],[52.26023, 14.64472],[52.25955, 14.64381],[52.25883, 14.64287],[52.2582, 14.64202],[52.25756, 14.64121],[52.2569, 14.6403],[52.25621, 14.6394],[52.25554, 14.6385],[52.25488, 14.6376],[52.25433, 14.63671],[52.25369, 14.63564],[52.25312, 14.6347],[52.25256, 14.63375],[52.25192, 14.63266],[52.25137, 14.6315],[52.2509, 14.63051],[52.25035, 14.62937],[52.24982, 14.62827],[52.24928, 14.62715],[52.2488, 14.62615],[52.24827, 14.62503],[52.24772, 14.62391],[52.24716, 14.62274],[52.24668, 14.62177],[52.24614, 14.62062],[52.24558, 14.61947],[52.24511, 14.61849],[52.24456, 14.61734],[52.24408, 14.61634],[52.24354, 14.61523],[52.243, 14.6141],[52.24245, 14.61298],[52.24191, 14.61186],[52.24144, 14.61089],[52.24089, 14.60975],[52.24036, 14.60865],[52.23984, 14.60757],[52.2393, 14.60651],[52.23877, 14.60539],[52.23823, 14.60429],[52.23769, 14.60319],[52.23712, 14.60203],[52.23711, 14.60098],[52.23766, 14.59997],[52.2382, 14.59894],[52.23881, 14.59782],[52.23895, 14.59646],[52.23893, 14.59506],[52.2389, 14.59369],[52.23888, 14.59239],[52.23883, 14.59108],[52.23883, 14.58954],[52.23881, 14.58818],[52.23878, 14.58673],[52.23876, 14.58552],[52.23874, 14.58412],[52.2387, 14.58274],[52.23868, 14.58142],[52.23867, 14.57996],[52.23861, 14.57858],[52.23925, 14.57766],[52.23993, 14.57682],[52.24053, 14.57587],[52.24115, 14.57496],[52.24194, 14.57438],[52.24281, 14.57426],[52.2436, 14.57439],[52.24442, 14.57385],[52.24474, 14.57281],[52.24466, 14.57155],[52.24452, 14.57016],[52.24445, 14.56886],[52.24414, 14.56755],[52.24385, 14.56619],[52.2435, 14.56497],[52.24315, 14.56381],[52.24279, 14.56248],[52.24244, 14.56125],[52.24208, 14.55998],[52.2417, 14.55873],[52.24127, 14.55733],[52.24089, 14.55616],[52.24048, 14.55493],[52.24018, 14.55376],[52.23998, 14.55233],[52.23995, 14.55101],[52.23983, 14.54957],[52.2397, 14.54828],[52.23959, 14.54689],[52.23937, 14.54559],[52.23928, 14.54454],[52.23893, 14.54334],[52.23823, 14.54249],[52.23813, 14.5412],[52.23783, 14.53995],[52.23762, 14.53872],[52.2375, 14.53719],[52.23739, 14.53597],[52.23731, 14.5345],[52.23744, 14.53321],[52.23744, 14.53186],[52.2381, 14.53129],[52.23743, 14.53063],[52.23693, 14.52967],[52.23681, 14.52835],[52.23657, 14.52697],[52.23655, 14.52556],[52.23688, 14.52434],[52.23726, 14.52308],[52.23739, 14.52173],[52.23744, 14.52044],[52.23713, 14.51915],[52.23748, 14.51782],[52.23813, 14.51703],[52.2384, 14.51583],[52.23843, 14.51444],[52.23819, 14.51319],[52.23819, 14.51176],[52.23838, 14.51049],[52.23866, 14.50905],[52.23907, 14.5079],[52.23956, 14.50684],[52.23982, 14.50548],[52.23982, 14.50412],[52.23955, 14.50287],[52.23977, 14.5015],[52.23992, 14.5002],[52.24018, 14.49891],[52.24036, 14.49763],[52.24059, 14.49617],[52.24069, 14.49484],[52.24041, 14.49355],[52.24026, 14.49225],[52.24041, 14.49097],[52.24072, 14.48955],[52.24107, 14.48825],[52.24158, 14.48723],[52.24201, 14.48596],[52.24263, 14.4852],[52.24289, 14.48391],[52.24291, 14.48269],[52.24339, 14.48166],[52.24418, 14.48065],[52.24474, 14.47969],[52.24516, 14.47847],[52.24537, 14.47711],[52.24583, 14.47606],[52.24622, 14.47493],[52.24639, 14.47355],[52.24644, 14.47224],[52.24667, 14.47099],[52.24703, 14.46972],[52.24738, 14.46853],[52.24777, 14.46723],[52.24813, 14.46592],[52.24844, 14.46457],[52.24844, 14.46325],[52.24826, 14.46182],[52.2481, 14.46046],[52.24797, 14.45907],[52.24781, 14.45758],[52.24774, 14.45619],[52.24781, 14.45486],[52.2479, 14.45359],[52.24797, 14.45229],[52.24814, 14.45094],[52.24828, 14.44964],[52.24842, 14.44824],[52.24867, 14.4468],[52.24892, 14.44546],[52.24918, 14.44421],[52.24952, 14.44291],[52.24986, 14.44159],[52.25018, 14.44033],[52.25054, 14.43899],[52.25087, 14.4377],[52.25118, 14.43646],[52.2515, 14.43524],[52.25185, 14.43388],[52.25217, 14.43264],[52.25255, 14.43125],[52.25283, 14.43007],[52.2532, 14.42872],[52.25355, 14.42749],[52.25401, 14.42644],[52.25442, 14.4252],[52.25484, 14.42399],[52.25526, 14.42274],[52.2557, 14.42153],[52.25613, 14.42036],[52.2566, 14.41914],[52.25702, 14.41795],[52.25744, 14.41685],[52.25728, 14.41604],[52.2565, 14.41671],[52.25574, 14.41594],[52.25552, 14.41499],[52.25605, 14.41394],[52.25603, 14.41295],[52.25542, 14.41241]
                                        ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                        </script>
                                        </body>
                                        </html>
                                        
                                        K 1 Antwort Letzte Antwort
                                        0
                                        • K Kanumouse

                                          Ergänzung für Tour_5 html (hat bei vorhergehenden Eintrag nicht geklappt).

                                          <!DOCTYPE html>
                                          <html>
                                          <head>
                                          <title>Simple Leaflet Map</title>
                                          <meta charset="utf-8" />
                                          <link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="crossorigin=""/></head>
                                          <body>
                                          <div id="map" style="width: 980px; height: 530px"></div>
                                          <script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="crossorigin=""></script>
                                          <script>
                                          var map = L.map('map').setView([52.25555,14.41233], 13);
                                          mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
                                          L.tileLayer( 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '&copy; ' + mapLink + ' Contributors', maxZoom: 18,}).addTo(map);
                                          var polyline = L.polyline([ 
                                          [52.25555, 14.41233],[52.25563, 14.41342],[52.25507, 14.41464],[52.25538, 14.41556],[52.2561, 14.41624],[52.2561, 14.41714],[52.25533, 14.41794],[52.25458, 14.41867],[52.25391, 14.41933],[52.25314, 14.42007],[52.25243, 14.42077],[52.25243, 14.42202],[52.25278, 14.42322],[52.25315, 14.42453],[52.25348, 14.4258],[52.25372, 14.42714],[52.25334, 14.42833],[52.25298, 14.42961],[52.25265, 14.43086],[52.25235, 14.43206],[52.25201, 14.43347],[52.2517, 14.43473],[52.25142, 14.43591],[52.25108, 14.43737],[52.25077, 14.43863],[52.25041, 14.43981],[52.25003, 14.4412],[52.24966, 14.44255],[52.24935, 14.44381],[52.24907, 14.44512],[52.24885, 14.44634],[52.24863, 14.4477],[52.24847, 14.44908],[52.24829, 14.45046],[52.24815, 14.45182],[52.24797, 14.45319],[52.24785, 14.45452],[52.24776, 14.45586],[52.2478, 14.45732],[52.24794, 14.45866],[52.24807, 14.46],[52.24824, 14.46147],[52.2484, 14.46282],[52.2485, 14.46418],[52.24829, 14.46544],[52.24795, 14.4668],[52.24762, 14.46799],[52.24727, 14.46918],[52.24685, 14.47058],[52.24656, 14.47188],[52.24648, 14.47314],[52.2463, 14.47449],[52.24607, 14.47584],[52.24546, 14.47661],[52.24524, 14.47808],[52.24498, 14.47932],[52.24439, 14.48036],[52.24377, 14.48137],[52.24314, 14.48209],[52.2429, 14.48344],[52.24283, 14.48475],[52.24215, 14.48574],[52.24173, 14.48695],[52.24119, 14.48793],[52.24083, 14.48922],[52.24053, 14.49056],[52.2403, 14.49188],[52.24028, 14.4931],[52.24058, 14.49443],[52.24067, 14.49588],[52.24042, 14.49726],[52.24031, 14.49846],[52.24007, 14.49978],[52.23985, 14.50111],[52.23961, 14.50261],[52.23972, 14.50379],[52.23991, 14.50521],[52.23972, 14.50653],[52.23926, 14.50768],[52.23879, 14.5087],[52.23854, 14.51008],[52.23832, 14.51129],[52.23812, 14.51267],[52.2384, 14.51398],[52.23852, 14.51535],[52.23827, 14.51664],[52.23768, 14.51763],[52.23714, 14.51872],[52.23734, 14.51991],[52.23744, 14.52134],[52.23733, 14.52279],[52.23705, 14.52398],[52.23661, 14.52524],[52.23656, 14.52656],[52.23678, 14.52798],[52.23692, 14.52929],[52.23728, 14.53046],[52.23804, 14.5311],[52.23761, 14.53177],[52.2374, 14.53289],[52.23737, 14.53419],[52.23731, 14.53558],[52.23745, 14.53683],[52.2375, 14.53827],[52.23775, 14.53962],[52.23803, 14.54079],[52.23817, 14.54218],[52.23882, 14.5431],[52.23921, 14.54434],[52.23946, 14.54534],[52.23955, 14.54652],[52.23972, 14.54786],[52.23981, 14.5494],[52.23992, 14.55072],[52.23997, 14.55207],[52.24009, 14.55343],[52.24042, 14.55466],[52.24082, 14.55593],[52.24126, 14.55719],[52.24165, 14.55849],[52.24199, 14.55964],[52.24239, 14.56096],[52.24273, 14.56224],[52.24309, 14.5635],[52.24346, 14.56478],[52.24383, 14.56609],[52.24415, 14.56733],[52.24438, 14.56855],[52.24451, 14.56996],[52.24462, 14.57121],[52.24471, 14.57269],[52.24463, 14.5738],[52.24385, 14.57426],[52.243, 14.5743],[52.24213, 14.57433],[52.24136, 14.57481],[52.24075, 14.57559],[52.24007, 14.57665],[52.23947, 14.57745],[52.2388, 14.5783],[52.23868, 14.57957],[52.23871, 14.58103],[52.23874, 14.58237],[52.23878, 14.58371],[52.2388, 14.58526],[52.2388, 14.58653],[52.23882, 14.5879],[52.23884, 14.58943],[52.23886, 14.59084],[52.23889, 14.59224],[52.23891, 14.59356],[52.23892, 14.59487],[52.23891, 14.5963],[52.23882, 14.59767],[52.2383, 14.59874],[52.23778, 14.59976],[52.23721, 14.60085],[52.23707, 14.60195],[52.23761, 14.6031],[52.2381, 14.60413],[52.23864, 14.60522],[52.23919, 14.60635],[52.2397, 14.60737],[52.24027, 14.60855],[52.24078, 14.60958],[52.24128, 14.61062],[52.24187, 14.61183],[52.24238, 14.6129],[52.24289, 14.61395],[52.24339, 14.615],[52.2439, 14.61605],[52.24448, 14.61725],[52.24499, 14.61831],[52.24552, 14.61941],[52.24603, 14.62049],[52.24657, 14.62162],[52.24712, 14.62277],[52.24759, 14.62372],[52.24811, 14.62482],[52.24865, 14.62591],[52.24917, 14.627],[52.24978, 14.62827],[52.25026, 14.62926],[52.2508, 14.63041],[52.25134, 14.63152],[52.25188, 14.63264],[52.25241, 14.63359],[52.25302, 14.63461],[52.25362, 14.63561],[52.25422, 14.63662],[52.25484, 14.63765],[52.25553, 14.63856],[52.25611, 14.63932],[52.25679, 14.64022],[52.25746, 14.64113],[52.25817, 14.64199],[52.25877, 14.64277],[52.25945, 14.64366],[52.26014, 14.64459],[52.26049, 14.6457],[52.26059, 14.64709],[52.26065, 14.64841],[52.26078, 14.64991],[52.26096, 14.65123],[52.26104, 14.65257],[52.26104, 14.65392],[52.26093, 14.65528],[52.26083, 14.65681],[52.2607, 14.65813],[52.26056, 14.65945],[52.26035, 14.66096],[52.26012, 14.66227],[52.2598, 14.66355],[52.25951, 14.66484],[52.2592, 14.6662],[52.25881, 14.66739],[52.25835, 14.66861],[52.25794, 14.66982],[52.25753, 14.67103],[52.25713, 14.67222],[52.25673, 14.67343],[52.25632, 14.67462],[52.25592, 14.6758],[52.25547, 14.67713],[52.25508, 14.67827],[52.25465, 14.67956],[52.25423, 14.68066],[52.25368, 14.6819],[52.2532, 14.68299],[52.25276, 14.68409],[52.25236, 14.68526],[52.25192, 14.68656],[52.25143, 14.68761],[52.2508, 14.68871],[52.25023, 14.68964],[52.24957, 14.69068],[52.24899, 14.69155],[52.24834, 14.6925],[52.24771, 14.69347],[52.24706, 14.69434],[52.24635, 14.69513],[52.24569, 14.69598],[52.24501, 14.69688],[52.24434, 14.69776],[52.24377, 14.6986],[52.24311, 14.69971],[52.24258, 14.70069],[52.24198, 14.70175],[52.24136, 14.70258],[52.24105, 14.70286],[52.2413, 14.70252],[52.24194, 14.70182],[52.24253, 14.70079],[52.24308, 14.6998],[52.24368, 14.69877],[52.24432, 14.6978],[52.24493, 14.69698],[52.24563, 14.69606],[52.24626, 14.69525],[52.24699, 14.69441],[52.24763, 14.69356],[52.2483, 14.69253],[52.24892, 14.69165],[52.24951, 14.69074],[52.25019, 14.6897],[52.25078, 14.68875],[52.25134, 14.68775],[52.25187, 14.6867],[52.25225, 14.68551],[52.2527, 14.68421],[52.25313, 14.6831],[52.2536, 14.682],[52.25415, 14.68079],[52.25459, 14.67965],[52.25504, 14.67831],[52.25545, 14.67713],[52.25585, 14.67593],[52.25626, 14.67475],[52.25665, 14.67355],[52.25705, 14.67235],[52.25751, 14.67102],[52.25792, 14.66981],[52.25832, 14.66863],[52.25876, 14.66751],[52.25919, 14.66622],[52.25948, 14.66496],[52.25977, 14.66367],[52.26007, 14.66238],[52.26032, 14.66106],[52.26052, 14.65968],[52.26067, 14.65832],[52.2608, 14.65695],[52.26089, 14.65553],[52.26102, 14.65411],[52.26104, 14.65286],[52.26099, 14.65145],[52.2608, 14.65006],[52.26064, 14.64873],[52.26059, 14.6473],[52.26049, 14.64589],[52.26023, 14.64472],[52.25955, 14.64381],[52.25883, 14.64287],[52.2582, 14.64202],[52.25756, 14.64121],[52.2569, 14.6403],[52.25621, 14.6394],[52.25554, 14.6385],[52.25488, 14.6376],[52.25433, 14.63671],[52.25369, 14.63564],[52.25312, 14.6347],[52.25256, 14.63375],[52.25192, 14.63266],[52.25137, 14.6315],[52.2509, 14.63051],[52.25035, 14.62937],[52.24982, 14.62827],[52.24928, 14.62715],[52.2488, 14.62615],[52.24827, 14.62503],[52.24772, 14.62391],[52.24716, 14.62274],[52.24668, 14.62177],[52.24614, 14.62062],[52.24558, 14.61947],[52.24511, 14.61849],[52.24456, 14.61734],[52.24408, 14.61634],[52.24354, 14.61523],[52.243, 14.6141],[52.24245, 14.61298],[52.24191, 14.61186],[52.24144, 14.61089],[52.24089, 14.60975],[52.24036, 14.60865],[52.23984, 14.60757],[52.2393, 14.60651],[52.23877, 14.60539],[52.23823, 14.60429],[52.23769, 14.60319],[52.23712, 14.60203],[52.23711, 14.60098],[52.23766, 14.59997],[52.2382, 14.59894],[52.23881, 14.59782],[52.23895, 14.59646],[52.23893, 14.59506],[52.2389, 14.59369],[52.23888, 14.59239],[52.23883, 14.59108],[52.23883, 14.58954],[52.23881, 14.58818],[52.23878, 14.58673],[52.23876, 14.58552],[52.23874, 14.58412],[52.2387, 14.58274],[52.23868, 14.58142],[52.23867, 14.57996],[52.23861, 14.57858],[52.23925, 14.57766],[52.23993, 14.57682],[52.24053, 14.57587],[52.24115, 14.57496],[52.24194, 14.57438],[52.24281, 14.57426],[52.2436, 14.57439],[52.24442, 14.57385],[52.24474, 14.57281],[52.24466, 14.57155],[52.24452, 14.57016],[52.24445, 14.56886],[52.24414, 14.56755],[52.24385, 14.56619],[52.2435, 14.56497],[52.24315, 14.56381],[52.24279, 14.56248],[52.24244, 14.56125],[52.24208, 14.55998],[52.2417, 14.55873],[52.24127, 14.55733],[52.24089, 14.55616],[52.24048, 14.55493],[52.24018, 14.55376],[52.23998, 14.55233],[52.23995, 14.55101],[52.23983, 14.54957],[52.2397, 14.54828],[52.23959, 14.54689],[52.23937, 14.54559],[52.23928, 14.54454],[52.23893, 14.54334],[52.23823, 14.54249],[52.23813, 14.5412],[52.23783, 14.53995],[52.23762, 14.53872],[52.2375, 14.53719],[52.23739, 14.53597],[52.23731, 14.5345],[52.23744, 14.53321],[52.23744, 14.53186],[52.2381, 14.53129],[52.23743, 14.53063],[52.23693, 14.52967],[52.23681, 14.52835],[52.23657, 14.52697],[52.23655, 14.52556],[52.23688, 14.52434],[52.23726, 14.52308],[52.23739, 14.52173],[52.23744, 14.52044],[52.23713, 14.51915],[52.23748, 14.51782],[52.23813, 14.51703],[52.2384, 14.51583],[52.23843, 14.51444],[52.23819, 14.51319],[52.23819, 14.51176],[52.23838, 14.51049],[52.23866, 14.50905],[52.23907, 14.5079],[52.23956, 14.50684],[52.23982, 14.50548],[52.23982, 14.50412],[52.23955, 14.50287],[52.23977, 14.5015],[52.23992, 14.5002],[52.24018, 14.49891],[52.24036, 14.49763],[52.24059, 14.49617],[52.24069, 14.49484],[52.24041, 14.49355],[52.24026, 14.49225],[52.24041, 14.49097],[52.24072, 14.48955],[52.24107, 14.48825],[52.24158, 14.48723],[52.24201, 14.48596],[52.24263, 14.4852],[52.24289, 14.48391],[52.24291, 14.48269],[52.24339, 14.48166],[52.24418, 14.48065],[52.24474, 14.47969],[52.24516, 14.47847],[52.24537, 14.47711],[52.24583, 14.47606],[52.24622, 14.47493],[52.24639, 14.47355],[52.24644, 14.47224],[52.24667, 14.47099],[52.24703, 14.46972],[52.24738, 14.46853],[52.24777, 14.46723],[52.24813, 14.46592],[52.24844, 14.46457],[52.24844, 14.46325],[52.24826, 14.46182],[52.2481, 14.46046],[52.24797, 14.45907],[52.24781, 14.45758],[52.24774, 14.45619],[52.24781, 14.45486],[52.2479, 14.45359],[52.24797, 14.45229],[52.24814, 14.45094],[52.24828, 14.44964],[52.24842, 14.44824],[52.24867, 14.4468],[52.24892, 14.44546],[52.24918, 14.44421],[52.24952, 14.44291],[52.24986, 14.44159],[52.25018, 14.44033],[52.25054, 14.43899],[52.25087, 14.4377],[52.25118, 14.43646],[52.2515, 14.43524],[52.25185, 14.43388],[52.25217, 14.43264],[52.25255, 14.43125],[52.25283, 14.43007],[52.2532, 14.42872],[52.25355, 14.42749],[52.25401, 14.42644],[52.25442, 14.4252],[52.25484, 14.42399],[52.25526, 14.42274],[52.2557, 14.42153],[52.25613, 14.42036],[52.2566, 14.41914],[52.25702, 14.41795],[52.25744, 14.41685],[52.25728, 14.41604],[52.2565, 14.41671],[52.25574, 14.41594],[52.25552, 14.41499],[52.25605, 14.41394],[52.25603, 14.41295],[52.25542, 14.41241]
                                          ], { color: "blue", weight: 3, opacity: .7, lineJoin: "round" } ).addTo(map);
                                          </script>
                                          </body>
                                          </html>
                                          
                                          K Offline
                                          K Offline
                                          Kanumouse
                                          schrieb am zuletzt editiert von
                                          #87

                                          @bahnuhr
                                          Vielen Dank für die Hinweise.
                                          Ich denke, das Problem hat sich erledigt.
                                          Nachdem ich ein „iob upload all“ gemacht habe, funktioniert es.

                                          bahnuhrB 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          390

                                          Online

                                          32.5k

                                          Benutzer

                                          81.9k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe