
com.cube.geojson.Feature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GeoGson Show documentation
Show all versions of GeoGson Show documentation
Simple dynamic GeoJson parsing utility for Java, with support for Elasticsearch
The newest version!
package com.cube.geojson;
public class Feature extends GeoJsonObject
{
private GeoJsonObject geometry;
private String id;
public GeoJsonObject getGeometry()
{
return geometry;
}
public void setGeometry(GeoJsonObject geometry)
{
this.geometry = geometry;
}
public String getId()
{
return id;
}
public void setId(String id)
{
this.id = id;
}
@Override public void finishPopulate()
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy