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

com.evrythng.thng.resource.model.store.geojson.GeoJsonPolygon Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
package com.evrythng.thng.resource.model.store.geojson;

import java.util.List;

public abstract class GeoJsonPolygon extends GeoJson {

	private static final long serialVersionUID = 6352106353615096344L;
	private List> coordinates;

	protected GeoJsonPolygon() {

		super(GeoJsonType.POLYGON);
	}

	public List> getCoordinates() {

		return coordinates;
	}

	public void setCoordinates(final List> coordinates) {

		this.coordinates = coordinates;
	}

	@Override
	public String toString() {

		return "GeoJsonPolygon [coordinates=" + coordinates + ", getGeoJsonType()=" + getGeoJsonType() + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy