
org.geojson.MultiPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geojson-jackson Show documentation
Show all versions of geojson-jackson Show documentation
A collection of Java POJOs for GeoJson
package org.geojson;
public class MultiPoint extends Geometry {
public MultiPoint() {
}
public MultiPoint(LngLatAlt... points) {
super(points);
}
@Override
public T accept(GeoJsonObjectVisitor geoJsonObjectVisitor) {
return geoJsonObjectVisitor.visit(this);
}
@Override
public String toString() {
return "MultiPoint{} " + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy