Commit 518a34cafef44830194648f332feafb47b4c2bfe

Authored by Andrea Petta
1 parent edda4294

plugin update

datalets/leafletjs-datalet/leafletjs-datalet.html
@@ -101,6 +101,14 @@ Example: @@ -101,6 +101,14 @@ Example:
101 else 101 else
102 continue; 102 continue;
103 } 103 }
  104 + else if(t.data[0].data[i][0].indexOf(","))
  105 + {
  106 + var coords = t.data[0].data[i][0].split(",");
  107 + if(!isNaN(coords[0]) && !isNaN(coords[1]))
  108 + coordinates.push([parseFloat(coords[0]), parseFloat(coords[1])]);
  109 + else
  110 + continue;
  111 + }
104 else 112 else
105 { 113 {
106 if(!isNaN(t.data[0].data[i]) && !isNaN(t.data[1].data[i])) 114 if(!isNaN(t.data[0].data[i]) && !isNaN(t.data[1].data[i]))