Plot a geoscript.geom.Geometry, geoscript.feature.Feature, or geoscript.layer.Layer.
import static geoscript.render.Plot.* import geoscript.geom.Point plot(new Point(1,1).buffer(10.0))
| Constructor and description | 
|---|
                                Plot
                                () | 
                        
| Type Params | Return Type | Name and description | 
|---|---|---|
 | 
                            static void | 
                            plot(java.util.Map options, Geometry geometry)Plot a Geometry 
  | 
                        
 | 
                            static void | 
                            plot(java.util.Map options, List geometries)Plot a List of Geometries 
  | 
                        
 | 
                            static void | 
                            plot(java.util.Map options, Feature feature)Plot a Feature 
  | 
                        
 | 
                            static void | 
                            plot(java.util.Map options, Layer layer)Plot a Layer 
  | 
                        
 | 
                            static java.awt.image.BufferedImage | 
                            plotToImage(java.util.Map options, Geometry geometry)Plot a Geometry to an Image 
 
  | 
                        
 | 
                            static java.awt.image.BufferedImage | 
                            plotToImage(java.util.Map options, List geometries)Plot a List of Geometries to an Image 
 
  | 
                        
 | 
                            static java.awt.image.BufferedImage | 
                            plotToImage(java.util.Map options, Feature feature)Plot a Feature to an Image 
 
  | 
                        
 | 
                            static java.awt.image.BufferedImage | 
                            plotToImage(java.util.Map options, Layer layer)Plot a Layer to an Image 
 
  | 
                        
| Methods inherited from class | Name | 
|---|---|
class java.lang.Object | 
                            java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() | 
                        
Plot a Geometry
options -  A Map of options or named parameters
 geometry -  The GeometryPlot a List of Geometries
options -  A Map of options or named parameters
 geometries -  The List of GeometriesPlot a Feature
options -  A Map of options or named parameters
 feature -  The FeaturePlot a Layer
options -  A Map of options or named parameters
 layer -  The LayerPlot a Geometry to an Image
options -  A Map of options or named parameters
 geometry -  The GeometryPlot a List of Geometries to an Image
options -  A Map of options or named parameters
 geometries -  The List of GeometriesPlot a Feature to an Image
options -  A Map of options or named parameters
 feature -  The FeaturePlot a Layer to an Image
options -  A Map of options or named parameters
 layer -  The Layer