[ad_1]
My KML file has a set of markers in this format
<Placemark>
<name>Kingsthorpe</name>
<styleUrl>#a</styleUrl> <Point>
<coordinates>-0.9009, 52.2634,0</coordinates>
</Point>
<description><![CDATA[Methodist, from: 1979 until: Open]]></description>
</Placemark>In the pop-up for each marker I want to be able to display two of the properties.
Now I can just display one property like this:
[leaflet-kml src="https://edintone.com/wp-content/uploads/2024/03/mydata.kml" popup_property="name"]but is there a syntax for two properties, like this, and yes, it is the property with the CDATA? i.e. a format that actually works?
[leaflet-kml src="https://edintone.com/wp-content/uploads/2024/03/mydata.kml" popup_property="name","description"]
