Package | Description |
---|---|
org.geotools.appschema.resolver.data | |
org.geotools.arcsde.data |
DataStore implementation for the ArcSDE 8.x and 9.x spatial gateway.
|
org.geotools.data |
Defines the DataStoreAPI via which all data is imported or exported.
|
org.geotools.data.collection |
Implementations of FeatureCollection for different purposes.
|
org.geotools.data.complex |
This package contains the implementation of a ComplexDataStore,
Author note: though this "Complex" datastore has born to provide
complex features out of a simple features data source, it may be better
called a DerivativeDataStore or something like that, you'll see
why later.
|
org.geotools.data.complex.xml | |
org.geotools.data.crs |
Provides support for the OGC Catalog Specification.
|
org.geotools.data.directory | |
org.geotools.data.gen | |
org.geotools.data.memory | |
org.geotools.data.simple | |
org.geotools.data.store | |
org.geotools.data.transform | |
org.geotools.data.util | |
org.geotools.data.wfs.impl | |
org.geotools.data.wfs.internal | |
org.geotools.feature | |
org.geotools.feature.collection |
Helper classes for implementing FeatureCollections.
|
org.geotools.filter | |
org.geotools.geojson.feature | |
org.geotools.gml.producer | |
org.geotools.map |
List of layers to be rendered.
|
org.geotools.process.feature | |
org.geotools.process.vector |
Vector processing support for the GeoTools library.
|
org.geotools.renderer |
Basic interface for rendering of features.
|
org.geotools.renderer.lite |
A simple renderer implementation.
|
org.geotools.wfs | |
org.geotools.wfs.bindings | |
org.geotools.xml.gml |
Modifier and Type | Class and Description |
---|---|
class |
SampleDataAccessFeatureCollection
Collection of features from a
SampleDataAccess . |
Modifier and Type | Method and Description |
---|---|
FeatureCollection<FeatureType,Feature> |
SampleDataAccessFeatureSource.getFeatures()
Return a
FeatureCollection containing the sample features. |
FeatureCollection<FeatureType,Feature> |
SampleDataAccessFeatureSource.getFeatures(Filter filter)
Not yet implemented.
|
FeatureCollection<FeatureType,Feature> |
SampleDataAccessFeatureSource.getFeatures(Query query)
Not yet implemented.
|
FeatureCollection<FeatureType,Feature> |
SampleDataAccessFeatureCollection.sort(SortBy order)
Unsupported operation.
|
FeatureCollection<FeatureType,Feature> |
SampleDataAccessFeatureCollection.subCollection(Filter filter)
Unsupported operation.
|
Modifier and Type | Class and Description |
---|---|
class |
ArcSdeFeatureCollection
FeatureCollection implementation that works over an
ArcSDEFeatureReader or one of the
decorators over it returned by ArcSDEDataStore#getFeatureReader(Query, Session, boolean) . |
Modifier and Type | Method and Description |
---|---|
List<FeatureId> |
ArcSdeFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) |
Modifier and Type | Class and Description |
---|---|
class |
DefaultFeatureResults
Generic "results" of a query, class.
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection<T,F> |
FeatureSource.getFeatures()
Retrieves all features in the form of a
FeatureCollection . |
FeatureCollection<T,F> |
FeatureSource.getFeatures(Filter filter)
Retrieves features, in the form of a
FeatureCollection , based on an OGC Filter . |
FeatureCollection<T,F> |
FeatureSource.getFeatures(Query query)
Retrieves features, in the form of a
FeatureCollection , based on a Query . |
Modifier and Type | Method and Description |
---|---|
List<FeatureId> |
FeatureStore.addFeatures(FeatureCollection<T,F> featureCollection)
Adds all features from the feature collection.
|
static ReferencedEnvelope |
DataUtilities.bounds(FeatureCollection<? extends FeatureType,? extends Feature> collection)
Manually calculates the bounds of a feature collection using
features() . |
static DefaultFeatureCollection |
DataUtilities.collection(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
Copies the provided features into a FeatureCollection.
|
static <F extends Feature> |
DataUtilities.collectionCast(FeatureCollection<?,F> featureCollection)
Used to quickly cast to a java.util.Collection.
|
static int |
DataUtilities.count(FeatureCollection<? extends FeatureType,? extends Feature> collection)
Manually count the number of features in a feature collection using using
features() . |
static Set<String> |
DataUtilities.fidSet(FeatureCollection<?,?> featureCollection)
Copies the feature ids from each and every feature into a set.
|
static <F extends Feature> |
DataUtilities.first(FeatureCollection<?,F> featureCollection)
Obtain the first feature from the collection as an exemplar.
|
static <F extends Feature> |
DataUtilities.list(FeatureCollection<?,F> featureCollection)
Copies the provided features into a List.
|
static <F extends Feature> |
DataUtilities.list(FeatureCollection<?,F> featureCollection,
int maxFeatures)
Copies the provided fetaures into a List.
|
static FeatureReader<SimpleFeatureType,SimpleFeature> |
DataUtilities.reader(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Adapt a collection to a reader for use with FeatureStore.setFeatures( reader ).
|
static SimpleFeatureCollection |
DataUtilities.simple(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
A safe cast to SimpleFeatureCollection; that will introduce a wrapper if it has to.
|
static SimpleFeatureSource |
DataUtilities.source(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Wraps up the provided feature collection in as a SimpleFeatureSource.
|
static void |
DataUtilities.visit(FeatureCollection<?,?> collection,
FeatureVisitor visitor,
ProgressListener progress)
Manually visit each feature using
features() . |
Modifier and Type | Class and Description |
---|---|
protected class |
CollectionFeatureSource.SubCollection
SubCollection for CollectionFeatureSource.
|
class |
ListFeatureCollection
FeatureCollection implementation wrapping around a java.util.List.
|
class |
SpatialIndexFeatureCollection
FeatureCollection used to stage information for display using a SpatialIndex.
|
class |
TreeSetFeatureCollection
Origional implementation of FeatureCollection using a TreeMap for internal storage.
|
Modifier and Type | Method and Description |
---|---|
boolean |
TreeSetFeatureCollection.addAll(FeatureCollection<?,?> collection) |
boolean |
SpatialIndexFeatureCollection.addAll(FeatureCollection<? extends SimpleFeatureType,? extends SimpleFeature> collection) |
Constructor and Description |
---|
TreeSetFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
This constructor should not be used by client code.
|
Modifier and Type | Class and Description |
---|---|
class |
MappingFeatureCollection
FeatureCollection for a MappingFeatureIterator . |
Modifier and Type | Field and Description |
---|---|
protected FeatureCollection<? extends FeatureType,? extends Feature> |
DataAccessMappingFeatureIterator.sourceFeatures |
Modifier and Type | Method and Description |
---|---|
FeatureCollection<FeatureType,Feature> |
MappingFeatureSource.getFeatures() |
FeatureCollection<FeatureType,Feature> |
MappingFeatureSource.getFeatures(Filter filter) |
FeatureCollection<FeatureType,Feature> |
MappingFeatureSource.getFeatures(Filter filter,
Hints hints) |
FeatureCollection<FeatureType,Feature> |
MappingFeatureSource.getFeatures(Query query) |
FeatureCollection<FeatureType,Feature> |
MappingFeatureCollection.sort(SortBy order) |
FeatureCollection<FeatureType,Feature> |
MappingFeatureCollection.subCollection(Filter filter) |
Modifier and Type | Method and Description |
---|---|
boolean |
MappingFeatureCollection.addAll(FeatureCollection<? extends FeatureType,? extends Feature> resource) |
Query |
IndexQueryManager.PartialIndexQueryManager.buildCombinedQuery(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection) |
Constructor and Description |
---|
IndexUniqueVisitorIterator(FeatureCollection<SimpleFeatureType,SimpleFeature> fc,
Query idQuery,
String idFieldName) |
Modifier and Type | Interface and Description |
---|---|
interface |
XmlFeatureCollection |
Modifier and Type | Class and Description |
---|---|
class |
ForceCoordinateSystemFeatureResults
ForceCoordinateSystemFeatureResults provides a CoordinateReferenceSystem for FeatureTypes.
|
class |
ReprojectFeatureResults
ReprojectFeatureReader provides a reprojection for FeatureTypes.
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection<SimpleFeatureType,SimpleFeature> |
ForceCoordinateSystemFeatureResults.getOrigin()
Returns the feature results wrapped by this ForceCoordinateSystemFeatureResults
|
FeatureCollection<SimpleFeatureType,SimpleFeature> |
ReprojectFeatureResults.getOrigin()
Returns the feature results wrapped by this reprojecting feature results
|
Constructor and Description |
---|
ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results,
CoordinateReferenceSystem forcedCS) |
ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results,
CoordinateReferenceSystem forcedCS,
boolean forceOnlyMissing) |
ReprojectFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results,
CoordinateReferenceSystem destinationCS)
Creates a new reprojecting feature results
|
Modifier and Type | Method and Description |
---|---|
List<FeatureId> |
DirectoryFeatureStore.addFeatures(FeatureCollection collection) |
Modifier and Type | Class and Description |
---|---|
class |
PreGeneralizedFeatureCollection |
Modifier and Type | Class and Description |
---|---|
class |
MemoryFeatureCollection
Implement a SimpleFeatureCollection by burning memory!
|
Modifier and Type | Method and Description |
---|---|
void |
MemoryDataStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) |
Constructor and Description |
---|
MemoryDataStore(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) |
Modifier and Type | Interface and Description |
---|---|
interface |
SimpleFeatureCollection
Access to "simple" Feature content where each feature has the same SimpleFeatureType.
|
Modifier and Type | Class and Description |
---|---|
class |
ContentFeatureCollection
A FeatureCollection that completely delegates to a backing FetaureSource#getReader
|
class |
DataFeatureCollection
A starting point for implementing FeatureCollection's backed onto a FeatureReader.
|
class |
EmptyFeatureCollection |
class |
FilteringFeatureCollection<T extends FeatureType,F extends Feature>
Decorates a feature collection with one that filters content.
|
class |
MaxFeaturesFeatureCollection<T extends FeatureType,F extends Feature>
SimpleFeatureCollection wrapper which limits the number of features returned.
|
class |
ReprojectingFeatureCollection
SimpleFeatureCollection decorator that reprojects all geometries of the features within the
feature collection.
|
class |
ReTypingFeatureCollection
SimpleFeatureCollection decorator which decorates a feature collection "re-typing" its schema
based on attributes specified in a query.
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection<T,F> |
MaxFeaturesFeatureCollection.sort(SortBy order) |
FeatureCollection<T,F> |
FilteringFeatureCollection.sort(SortBy order) |
FeatureCollection<T,F> |
MaxFeaturesFeatureCollection.subCollection(Filter filter) |
FeatureCollection<T,F> |
FilteringFeatureCollection.subCollection(Filter filter) |
Modifier and Type | Method and Description |
---|---|
boolean |
DataFeatureCollection.addAll(FeatureCollection resource) |
List<FeatureId> |
ContentFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
Adds a collection of features to the store.
|
Constructor and Description |
---|
FilteringFeatureCollection(FeatureCollection<T,F> delegate,
Filter filter) |
MaxFeaturesFeatureCollection(FeatureCollection<T,F> delegate,
long max) |
ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate,
CoordinateReferenceSystem target) |
ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate,
CoordinateReferenceSystem source,
CoordinateReferenceSystem target) |
ReTypingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate,
SimpleFeatureType featureType) |
Modifier and Type | Method and Description |
---|---|
List<FeatureId> |
TransformFeatureStore.addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection) |
Modifier and Type | Method and Description |
---|---|
static <T extends Feature,K extends FeatureType> |
FeatureStreams.toFeatureStream(FeatureCollection<K,T> fc)
Converts FeatureCollection to Stream of Features Use with try-with-resources clause for auto
closing
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection<FeatureType,Feature> |
WFSContentComplexFeatureSource.getFeatures()
Get features using the default Query.ALL.
|
FeatureCollection<FeatureType,Feature> |
WFSContentComplexFeatureSource.getFeatures(Filter filter)
Get features based on the specified filter.
|
FeatureCollection<FeatureType,Feature> |
WFSContentComplexFeatureSource.getFeatures(Query query)
Get features based on the query specified.
|
Modifier and Type | Class and Description |
---|---|
class |
WFSContentComplexFeatureCollection
Feature collection for parsing complex features.
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection<FeatureType,Feature> |
WFSContentComplexFeatureCollection.subCollection(Filter filter) |
Modifier and Type | Class and Description |
---|---|
class |
DefaultFeatureCollection
A basic implementation of SimpleFeatureCollection which use a
TreeMap for its internal
storage. |
Modifier and Type | Method and Description |
---|---|
FeatureCollection<? extends FeatureType,? extends Feature> |
CollectionEvent.getCollection()
Deprecated.
provides access to the SimpleFeatureCollection which fired the event
|
FeatureCollection<T,F> |
FeatureCollection.sort(SortBy order)
Obtained sorted contents.
|
FeatureCollection<T,F> |
FeatureCollection.subCollection(Filter filter)
SimpleFeatureCollection "view" indicated by provided filter.
|
Modifier and Type | Method and Description |
---|---|
boolean |
DefaultFeatureCollection.addAll(FeatureCollection<?,?> collection) |
void |
FeatureCollectionIteration.Handler.endFeatureCollection(FeatureCollection<?,?> fc)
The handler is done visiting a FeatureCollection.
|
void |
FeatureCollectionIteration.Handler.handleFeatureCollection(FeatureCollection<?,?> fc)
The handler is visiting a FeatureCollection.
|
static void |
FeatureCollectionIteration.iteration(FeatureCollectionIteration.Handler handler,
FeatureCollection<?,?> collection)
A convienience method for obtaining a new iteration and calling iterate.
|
protected void |
FeatureCollectionIteration.walker(FeatureCollection<?,?> collection)
Perform the iterative behavior on the given collection.
|
Constructor and Description |
---|
CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> collection,
FeatureEvent event)
Deprecated.
|
CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> source,
SimpleFeature[] involvedFeatures,
int type)
Deprecated.
Constructs a new CollectionEvent.
|
DefaultFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Used to stage content in memory.
|
FeatureCollectionIteration(FeatureCollectionIteration.Handler handler,
FeatureCollection<?,?> collection)
Create a new FeatureCollectionIteration with the given handler and collection.
|
Modifier and Type | Interface and Description |
---|---|
interface |
RandomFeatureAccess
Access Feature content using Feature "Id".
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractFeatureCollection
Implement a feature collection just based on provision of an
Iterator . |
class |
AdaptorFeatureCollection
Implement a feature collection just based on provision of iterator.
|
class |
BaseFeatureCollection<T extends FeatureType,F extends Feature>
Implement a feature collection just based on provision of a
FeatureIterator . |
class |
BaseSimpleFeatureCollection |
class |
DecoratingFeatureCollection<T extends FeatureType,F extends Feature>
A FeatureCollection which completely delegates to another FeatureCollection.
|
class |
DecoratingSimpleFeatureCollection
A FeatureCollection which completely delegates to another FeatureCollection.
|
class |
FilteringSimpleFeatureCollection
Decorates a feature collection with one that filters content.
|
class |
MaxSimpleFeatureCollection
SimpleFeatureCollection wrapper which limits the number of features returned.
|
class |
SortedSimpleFeatureCollection
A wrapper that will sort a feature collection using a size sensitive algorithm, in main memory
for small collections, using secondary memory otherwise.
|
class |
SubFeatureCollection
Reasonable default implementation for subCollection making use of parent
SimpleFeatureCollection.features() and provided Filter. |
class |
SubFeatureList
Default implementation of
sort(SortBy) . |
Modifier and Type | Field and Description |
---|---|
protected FeatureCollection<T,F> |
DecoratingFeatureCollection.delegate
the delegate
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection<T,F> |
DecoratingFeatureCollection.sort(SortBy order) |
FeatureCollection<T,F> |
BaseFeatureCollection.sort(SortBy order)
Obtained sorted contents, only implemented for SimpleFeature at present.
|
FeatureCollection<T,F> |
DecoratingFeatureCollection.subCollection(Filter filter) |
FeatureCollection<T,F> |
BaseFeatureCollection.subCollection(Filter filter)
Convenience implementation that just wraps this collection into a
FilteringFeatureCollection . |
Constructor and Description |
---|
DecoratingFeatureCollection(FeatureCollection<T,F> delegate) |
DecoratingSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate) |
DelegateFeatureIterator(FeatureCollection<? extends FeatureType,F> collection,
Iterator<F> iterator)
Deprecated.
collection no longer used
|
DelegateSimpleFeatureIterator(FeatureCollection<SimpleFeatureType,SimpleFeature> collection,
Iterator<SimpleFeature> iterator)
Wrap the provided iterator up as a FeatureIterator.
|
FilteringSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate,
Filter filter) |
MaxSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate,
long max) |
Modifier and Type | Method and Description |
---|---|
static void |
FilteringIteration.filter(FeatureCollection<?,?> features,
Filter filter)
Deprecated.
|
Constructor and Description |
---|
FilteringIteration(Filter filter,
FeatureCollection<?,?> collection)
Deprecated.
Creates a new instance of FilteringIteration
|
Modifier and Type | Method and Description |
---|---|
FeatureCollection |
FeatureJSON.readFeatureCollection(InputStream input)
Reads a feature collection from GeoJSON.
|
FeatureCollection |
FeatureJSON.readFeatureCollection(Object input)
Reads a feature collection from GeoJSON.
|
Modifier and Type | Method and Description |
---|---|
String |
FeatureJSON.toString(FeatureCollection features)
Writes a feature collection as GeoJSON returning the result as a string.
|
void |
FeatureJSON.writeFeatureCollection(FeatureCollection features,
Object output)
Writes a feature collection as GeoJSON.
|
void |
FeatureJSON.writeFeatureCollection(FeatureCollection features,
OutputStream output)
Writes a feature collection as GeoJSON.
|
Modifier and Type | Method and Description |
---|---|
void |
FeatureTransformer.FeatureTranslator.endFeatureCollection(FeatureCollection<?,?> collection)
Sends sax for the ending of a feature collection.
|
void |
FeatureTransformer.FeatureTranslator.handleFeatureCollection(FeatureCollection<?,?> collection)
Prints up the gml for a featurecollection.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultMapContext.addLayer(FeatureCollection featureCollection,
Style style)
Deprecated.
Add the given feature collection as a new layer to the end of the list of layers held by this
context and trigger a MapLayerListEvent.
|
void |
MapContext.addLayer(FeatureCollection featureCollection,
Style style)
Deprecated.
Add a new layer and trigger a
LayerListEvent . |
Constructor and Description |
---|
DefaultMapLayer(FeatureCollection collection,
Style style)
Deprecated.
Creates a new instance of DefaultMapLayer using a non-emtpy feature collection as a parameter
|
DefaultMapLayer(FeatureCollection collection,
Style style,
String title)
Deprecated.
Creates a new instance of DefaultMapLayer using a non-emtpy feature collection as a parameter
|
FeatureLayer(FeatureCollection collection,
Style style) |
FeatureLayer(FeatureCollection collection,
Style style,
String title) |
MapLayer(FeatureCollection collection,
Style style)
Deprecated.
Creates a new instance of DefaultMapLayer using a non-emtpy feature collection as a parameter
|
MapLayer(FeatureCollection collection,
Style style,
String title)
Deprecated.
Creates a new instance of DefaultMapLayer using a non-emtpy feature collection as a parameter
|
Modifier and Type | Field and Description |
---|---|
static Parameter<FeatureCollection> |
AbstractFeatureCollectionProcessFactory.FEATURES
Features for operation
|
static Parameter<FeatureCollection> |
FeatureToFeatureProcessFactory.RESULT
Result of the operation is a FeatureCollection.
|
Modifier and Type | Class and Description |
---|---|
class |
ProcessingCollection<T extends FeatureType,F extends Feature>
Abstract base class to ease the implementation of a streaming processing collection, that is, one
that tries to compute the results on the fly as the iterator is traversed.
|
class |
SimpleProcessingCollection
The simple feature version of
ProcessingCollection . |
Modifier and Type | Method and Description |
---|---|
FeatureCollection |
NearestProcess.execute(FeatureCollection featureCollection,
Point point,
CoordinateReferenceSystem crs)
Process the input data set.
|
FeatureCollection |
SnapProcess.execute(FeatureCollection featureCollection,
Point point,
CoordinateReferenceSystem crs)
Process the input data set.
|
FeatureCollection |
LRSGeocodeProcess.execute(FeatureCollection featureCollection,
String fromMeasureAttb,
String toMeasureAttb,
Double measure)
Process the input data set.
|
FeatureCollection |
LRSSegmentProcess.execute(FeatureCollection featureCollection,
String fromMeasureAttb,
String toMeasureAttb,
Double fromMeasure,
Double toMeasure)
Process the input data set.
|
FeatureCollection |
LRSMeasureProcess.execute(FeatureCollection featureCollection,
String fromMeasureAttb,
String toMeasureAttb,
Point point,
CoordinateReferenceSystem crs)
Process the input data set.
|
Modifier and Type | Method and Description |
---|---|
ReferencedEnvelope |
BoundsProcess.execute(FeatureCollection features) |
FeatureCollection |
NearestProcess.execute(FeatureCollection featureCollection,
Point point,
CoordinateReferenceSystem crs)
Process the input data set.
|
FeatureCollection |
SnapProcess.execute(FeatureCollection featureCollection,
Point point,
CoordinateReferenceSystem crs)
Process the input data set.
|
GeometryCollection |
CollectGeometries.execute(FeatureCollection features,
ProgressListener progressListener) |
FeatureClassStats.Results |
FeatureClassStats.execute(FeatureCollection features,
String attribute,
Set<Statistic> stats,
Integer classes,
ClassificationMethod method,
Double noData,
ProgressListener progressListener) |
FeatureCollection |
LRSGeocodeProcess.execute(FeatureCollection featureCollection,
String fromMeasureAttb,
String toMeasureAttb,
Double measure)
Process the input data set.
|
FeatureCollection |
LRSSegmentProcess.execute(FeatureCollection featureCollection,
String fromMeasureAttb,
String toMeasureAttb,
Double fromMeasure,
Double toMeasure)
Process the input data set.
|
FeatureCollection |
LRSMeasureProcess.execute(FeatureCollection featureCollection,
String fromMeasureAttb,
String toMeasureAttb,
Point point,
CoordinateReferenceSystem crs)
Process the input data set.
|
Modifier and Type | Method and Description |
---|---|
void |
Renderer.render(FeatureCollection<? extends FeatureType,? extends Feature> fc,
Envelope viewport,
Style style)
Renders the provided features using the specified style.
|
Modifier and Type | Class and Description |
---|---|
class |
IndexedFeatureResults
IndexedFeatureReader
|
Modifier and Type | Class and Description |
---|---|
class |
CompositeFeatureCollection
Wraps multiple feature collections into a single.
|
Constructor and Description |
---|
PropertyValueCollection(FeatureCollection delegate,
AttributeDescriptor descriptor,
PropertyName propName) |
Constructor and Description |
---|
CompositeFeatureCollection(List<FeatureCollection> collections) |
Modifier and Type | Method and Description |
---|---|
static List<FeatureCollection> |
WFSParsingUtils.features(EObject obj) |
Modifier and Type | Class and Description |
---|---|
class |
GMLFeatureCollection |
Copyright © 1996–2019 Geotools. All rights reserved.