• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Map Marker Snippet

[HIGH]/*
* Add the Town Markers
*/
for (int i = 0;i < the_points.size();i++) {
GpsPoint the_pt = the_points.get(i);
Float lat_v = the_pt.lat;
Float lng_v = the_pt.lng;
String marker_name = the_pt.name;
String marker_desc = the_pt.desc;
String marker_icon = the_pt.icon;
mMap.addMarker(new MarkerOptions().position(new LatLng(lat_v, lng_v))
.title(marker_name)
.snippet(marker_desc)
.icon(BitmapDescriptorFactory.fromAsset("scroll_images/"+marker_icon)));
}
[/HIGH]I have this marker_desc which is html, any way to render it as html on the map, as it currently displays as plain text.
 
Back
Top Bottom