Map API

Nutiteq Maps Lib SDK enables developing advanced mobile mapping applications.
Platforms: Android, RIM BlackBerry, Java ME (J2ME)
Download maps API SDK »
Untitled Document

Products

» View demos
» Downloads

Latest news

Last at Tue, 6 Dec 2011 18:37:53
Topic: New BlackBerry sample app
See more news »

Kml place descriptions

2 replies [Last post]
mveggia
User offline. Last seen 2 years 18 weeks ago. Offline
Joined: 06/10/2009

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!

jaak
User offline. Last seen 13 hours 12 min ago. Offline
Joined: 06/19/2008

Use:

final PlaceInfo info = mapComponent.getAdditionalInfo((Place) place);
String description = info.getDescription();

/JaakL