java - InfoWindow's subDescription will go out of bounds of the bubble in osmdroid bonuspack -


i trying set subdescription markers code this:

marker marker = new marker(map); marker.setposition(tempgeopoint); marker.seticon(markericon); marker.setanchor(marker.anchor_center, marker.anchor_bottom); marker.setsubdescription("lat : " + points.get(i).get(0) + ", long : "                         + points.get(i).get(1)); marker.settitle("this title"); overlays.add(marker); 

but get:

enter image description here

as can see sub description out of bounds , bubble won't expand contain it. options here?

ps: bubble won't expand @ all, neither sub description nor long snippet


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -