aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/public/javascripts/map.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/web/public/javascripts/map.js b/web/public/javascripts/map.js
index abb988a..c5b1583 100644
--- a/web/public/javascripts/map.js
+++ b/web/public/javascripts/map.js
@@ -24,12 +24,6 @@ function plotPointsOnMap(points) {
pointToLayer: function (feature, latlng) {
//return L.circleMarker(latlng);
latlngbounds.extend(latlng);
- if (feature.status === "pending") {
- return L.marker(latlng, {icon: orangeIcon});
- }
- else if (feature.status === "new") {
- return L.marker(latlng);
- }
}
}).on('click', showDetails).addTo(map);