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

org.jgrasstools.nww.shapes.FeatureExtrudedPolygon Maven / Gradle / Ivy

The newest version!
package org.jgrasstools.nww.shapes;

import org.opengis.feature.simple.SimpleFeature;

import gov.nasa.worldwind.render.ExtrudedPolygon;

public class FeatureExtrudedPolygon extends ExtrudedPolygon implements IFeatureShape {
    private SimpleFeature feature;
    private FeatureStoreInfo featureStoreInfo;

    public FeatureExtrudedPolygon( FeatureStoreInfo featureStoreInfo ) {
        this.featureStoreInfo = featureStoreInfo;
    }

    public SimpleFeature getFeature() {
        return feature;
    }

    public void setFeature( SimpleFeature feature ) {
        this.feature = feature;
    }

    @Override
    public FeatureStoreInfo getFeatureStoreInfo() {
        return featureStoreInfo;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy