We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aafa47 commit 25a3fbcCopy full SHA for 25a3fbc
src/main/java/com/flowingcode/vaadin/addons/googlemaps/GoogleMapMarker.java
@@ -86,7 +86,7 @@ private void initialize() {
86
this.getElement().setAttribute("title", caption);
87
this.getElement().setAttribute("latitude", "" + position.getLat());
88
this.getElement().setAttribute("longitude", "" + position.getLon());
89
- this.getElement().setAttribute("draggable", draggable);
+ this.getElement().setAttribute("draggable", String.valueOf(draggable));
90
this.getElement().setAttribute("icon", iconUrl);
91
}
92
0 commit comments