Label.LabelStyle style = new Label.LabelStyle();
style.font = marker.getFont();
actor = new Label(marker.getText(), style);
} else if (marker.getImage() != null) {
actor = new ImageButton(
new TextureRegionDrawable(
marker.getImage().getTextureRegion()));
}
if (actor != null) {