in ark-demo/webapp/src/utils/htmlForFeature.js [71:83]
function generateHtml(
feature,
propertyName,
showColumnName,
html,
formatterFunction = (v) => v
) {
return html.concat(
`${showColumnName ? `<strong>${propertyName}</strong>: ` : ''}${formatterFunction(
feature.properties[propertyName]
)}<br/>`
);
}