use of org.vaadin.addon.leaflet.shared.LeafletCircleState in project v-leaflet by mstahv.
the class LeafletCircleMarkerConnector method createOptions.
@Override
protected CircleMarkerOptions createOptions() {
CircleMarkerOptions o = super.createOptions();
LeafletCircleState s = getState();
if (s.radius != null) {
o.setRadius(s.radius);
}
return o;
}
Aggregations