i just tried the plugin Qgis2web. The result looks already very nice
But to optimize to lay out , i have some questions.
How is it possible to display a title on the map? How is it possible to display a logo and the name of your organisation in the right corner?
I changed already the code for the lay out in the pop up content but how is it possible to create a white space between 'voornaam' and achternaam'.
And a last little thing: If i haven't a value in the variable 'National_1'it display 'null' instead of a white space..
var popupContent = 'Naam' + Autolinker.link(String(feature.properties['voornaam'])) + Autolinker.link(String(feature.properties['Achternaam'])) + 'Geboortedatum' + Autolinker.link(String(feature.properties['Geboorteda'])) + 'Nationaliteit' + Autolinker.link(String(feature.properties['Nationalit'])) + Autolinker.link(String(feature.properties['National_1'])) + 'Positie' + Autolinker.link(String(feature.properties['Positie'])) ''; layer.bindPopup(popupContent); }