org.vaadin.addons.maplibre.LinePaint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maplibre Show documentation
Show all versions of maplibre Show documentation
An extension to Vaadin that provides a Java API for MapLibreGL slippy map component with modern vector layer support.
package org.vaadin.addons.maplibre;
import org.vaadin.addons.maplibre.dto.AbstractKebabCasedDto;
import org.vaadin.addons.maplibre.dto.Color;
public class LinePaint extends AbstractKebabCasedDto {
Color lineColor;
Double lineWidth;
public LinePaint(Color lineColor) {
this.lineColor = lineColor;
}
public LinePaint(Color lineColor, Double lineWidth) {
this.lineColor = lineColor;
this.lineWidth = lineWidth;
}
public Double getLineWidth() {
return lineWidth;
}
public Color getLineColor() {
return lineColor;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy