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

com.cube.geojson.Feature Maven / Gradle / Ivy

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