From 3a15a3bb064fc950ebb3c5278c71f3e76c472227 Mon Sep 17 00:00:00 2001 From: Lukas Martinelli Date: Wed, 18 Jan 2017 10:03:15 +0100 Subject: [PATCH] Show type of feature in popup --- src/components/map/FeaturePropertyPopup.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/map/FeaturePropertyPopup.jsx b/src/components/map/FeaturePropertyPopup.jsx index ec8506e..c83c64d 100644 --- a/src/components/map/FeaturePropertyPopup.jsx +++ b/src/components/map/FeaturePropertyPopup.jsx @@ -23,6 +23,9 @@ function renderProperties(feature) { function renderFeature(feature) { return
{feature.layer['source-layer']}
+ + + {renderProperties(feature)}
}