All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vaadin.addons.maplibre.LinePaint Maven / Gradle / Ivy

Go to download

An extension to Vaadin that provides a Java API for MapLibreGL slippy map component with modern vector layer support.

There is a newer version: 1.2.0
Show newest version
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