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:
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
Post a Comment