org.openstreetmap.atlas.geography.geojson.GeoJsonCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.geography.geojson;
/**
* Interface for all GeoJson collection types {@link GeojsonGeometryCollection} and
* {@link GeoJsonFeatureCollection}
*
* @param
* The type of GeoJsonGeometry in the collection
* @author jklamer
*/
public interface GeoJsonCollection extends GeoJson
{
Iterable getGeoJsonObjects();
}