diff --git a/src/Map.js b/src/Map.js
index a0f3c95..d955779 100644
--- a/src/Map.js
+++ b/src/Map.js
@@ -48,7 +48,7 @@ function min_max(request)
function list_polygons(request, center, ratio, ind)
{
let polygons = [];
- let tarace = 0;
+ //let tarace = 0;
for (const k in request)
{
polygons = [...polygons, ((request[k]).map((y) => {
@@ -66,7 +66,8 @@ function list_polygons(request, center, ratio, ind)
return [(z[1]-center[1])/25, (z[0]-center[0])/25];
}
})
- })).map((x) => {tarace = tarace+1; return {k}Popup})];
+ })).map((x) => {return Popup})];
+// })).map((x) => {tarace = tarace+1; return {k}Popup})];
}
return polygons;
}