Updating label content
alexcroox opened this issue · 3 comments
alexcroox commented
How do I update the label text after creation?
I've tried:
marker.label._updateContent('test');
marker.updateLabelContent('test');
marker.label.updateLabelContent('test');
tmcw commented
marker.label.setContent('test');
?
alexcroox commented
Tried that as well
alexcroox commented
Ah my fault, was trying to use an int for the value, converting it to a string first fixed it.