![JAR search and dependency download from the Maven repository](/logo.png)
net.anwiba.spatial.geo.json.v01_0.Polygon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anwiba-spatial-data-geo-json Show documentation
Show all versions of anwiba-spatial-data-geo-json Show documentation
anwiba spatial geojson io project
//Copyright (c) 2012 by Andreas W. Bartels
package net.anwiba.spatial.geo.json.v01_0;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Polygon
extends Geometry
{
private final String type = "Polygon";
private double[][][] coordinates = null;
@JsonIgnore
public void setType(final String type) {
}
@JsonIgnore
public String getType() {
return this.type;
}
@JsonProperty("coordinates")
public void setCoordinates(final double[][][] coordinates) {
this.coordinates = coordinates;
}
@JsonProperty("coordinates")
public double[][][] getCoordinates() {
return this.coordinates;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy