JavaScript:
var method = "39.017653,-77.38967506;39.0296,-77.400312;39.025008,-77.392108;39.026076,-77.391247;39.039701,-77.385149;39.042511,-77.384622;39.044917,-77.376168;39.044431,-77.363503;39.042494,-77.36261;39.040363,-77.363011;39.029778,-77.366968;39.027949,-77.368974;39.026714,-77.369321;39.020609,-77.368007;39.020209,-77.365907;39.020209,-77.365907;39.015409,-77.370807;39.015409,-77.370807;39.012095,-77.373905;38.991771,-77.3936;38.991072,-77.394355;38.982709,-77.402509;38.982709,-77.402509;38.988954,-77.408699;38.991142,-77.412171;38.993777,-77.418058;38.992509,-77.420009;38.991814,-77.419249;38.991726,-77.41711;38.989543,-77.415239;38.988617,-77.419776;38.989666,-77.428636;39.004009,-77.43391;39.005716,-77.428903;39.007709,-77.418509;39.022422,-77.407153;39.024145,-77.405407;39.026734,-77.40095;39.0296,-77.400312;";
var method2 = "38.8967799,-77.3283754;38.908811,-77.360907;38.910312,-77.359908;38.911312,-77.356208;38.909411,-77.352507;38.911811,-77.347907;38.913011,-77.343807;38.913411,-77.338307;38.916611,-77.328606;38.920312,-77.322807;38.922112,-77.322507;38.922112,-77.318232;38.922112,-77.318232;38.922112,-77.317507;38.920712,-77.316407;38.917011,-77.316406;38.915511,-77.318706;38.911111,-77.318206;38.910411,-77.317006;38.910311,-77.311006;38.910711,-77.310206;38.909711,-77.303305;38.902711,-77.303406;38.897711,-77.304406;38.892011,-77.304306;38.889911,-77.304106;38.885811,-77.301106;38.881011,-77.301006;38.880411,-77.294705;38.875211,-77.287705;38.875211,-77.287705;38.872322,-77.291809;38.872322,-77.291809;38.869885,-77.303265;38.869012,-77.309106;38.873223,-77.308738;38.875387,-77.307438;38.877211,-77.305606;38.874711,-77.313606;38.873012,-77.316406;38.866812,-77.322106;38.865239,-77.330357;38.864312,-77.336507;38.864312,-77.336507;38.871459,-77.336417;38.873512,-77.339207;38.871812,-77.340807;38.871212,-77.343707;38.871886,-77.34613;38.873312,-77.348207;38.875512,-77.353707;38.876812,-77.358907;38.879812,-77.367308;38.881312,-77.368908;38.885111,-77.363008;38.890111,-77.352207;38.893711,-77.350207;38.904111,-77.357507;38.904111,-77.357507;38.908811,-77.360907;";
var places = [method, method2];
var splitPlaces;
var cityOverLays = new Array();
function create() {
for (var i = 0; i <= places.length; i++) {
var splitPlaces = places[i].split(";");
for (var a = 0; a <= splitPlaces.length; a++) {
var xyCoords = splitPlaces[a].split(",");
document.write(xyCoords + "<br />");
}
}
}
create();