I have a kml file with some elements with a title and description. I set a placelistener in the map to open a new form when user click on a place (of my kml) and i want to see in this new form the place title and the description (from kml). I see the object Place have the method getName but it don't have a method link getDescription... There is a way to get the place description?
Thanks!
Use:
final PlaceInfo info = mapComponent.getAdditionalInfo((Place) place);
String description = info.getDescription();
/JaakL