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

com.scaleset.geo.FeatureCollectionHandler Maven / Gradle / Ivy

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy