com.scaleset.geo.FeatureCollectionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scaleset-geo Show documentation
Show all versions of scaleset-geo Show documentation
Simple framework for dealing with GeoJson and similar data formats
The newest version!
package com.scaleset.geo;
import com.vividsolutions.jts.geom.Envelope;
public class FeatureCollectionHandler implements FeatureHandler {
private FeatureCollection collection = new FeatureCollection();
public void begin() {
}
public void end() {
}
public FeatureCollection getCollection() {
return collection;
}
public void handle(Feature feature) {
collection.add(feature);
}
public void handle(Envelope bbox) {
collection.setBbox(bbox);
}
}