Remove unused variables in examples

This commit is contained in:
Tom Payne
2013-05-21 12:46:54 +02:00
parent 1c77fb2357
commit 6900c90bc5

View File

@@ -67,7 +67,6 @@ xhr.open('GET', url, true);
xhr.onload = function() {
if (xhr.status == 200) {
// this is silly to have to tell the layer the destination projection
var projection = map.getView().getProjection();
vector.parseFeatures(xhr.responseText, kml, epsg4326);
}
};