diff options
-rw-r--r-- | map.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ function typecolor(type) { else { return ('black'); }; }; function returnFeatureMarker(feature, latlng) { - var hasPopup = (feature.properties.location && feature.properties.type); + var hasPopup = (feature.properties.location && feature.properties.title); return L.circleMarker(latlng, { title: feature.properties.title, zIndexOffset: 1000*feature.properties.priority || 0, |