Map and network chart - Driving time between cities on the map

Driving time on the map

keyboard_arrow_leftGo back
Open in JSFiddle
JavaScript
chart= new GeoChart({
    "layers": [
        {
            "name": "Points",
            "type": "items",
            "style": {
                "nodeStyleFunction": function (node) {
                        node.label = node.data.id;
                    },
                "linkStyleFunction": function (link) {
                        link.label = link.data.drivingTime;
                    },
                "node": {
                    "fillColor": "#6f52b8",
                    "lineColor": "#eab404",
                    "lineWidth": 3
                },
                "nodeLabel": {
                    "backgroundStyle": {
                        "fillColor": "#6f52b8",
                        "lineColor": "#6f52b8"
                    },
                    "textStyle": {
                        "fillColor": "#eab404"
                    }
                },
                "linkLabel": {
                    "backgroundStyle": {
                        "fillColor": "#b0dc0b",
                        "lineColor": "#b0dc0b"
                    },
                    "textStyle": {
                        "fillColor": "#1c7cd5"
                    }
                }
            }
        }
    ],
    "navigation": {
        "initialLat": 35.04409,
        "initialLng": -90.246213,
        "initialZoom": 4,
        "minZoom": 4
    },
    "advanced": {
        "pointer": {
            "noClickOnDoubleClick": false
        }
    },
    "container": "demo",
    "data": [
        {
            "url": "\/dvsl\/data\/extra\/driving-time.json",
            "perBoundsData": false
        }
    ],
    "interaction": {
        "resizing": {
            "enabled": false
        }
    }
})
HTML
      <script src="https://cdn.zoomcharts-cloud.com/1/latest/zoomcharts.js"></script>
      <div id="demo"></div>
                  
Data

              
//