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

ios - Is 'init' forbidden as *part* of a variable name? -

file - Python: AttributeError: 'str' object has no attribute 'readlines' -

c# - Get the Class name in a class with atribute inside a attribute method -