Class TLspPlotLayerBuilder

java.lang.Object
com.luciad.view.lightspeed.layer.ALspLayerBuilder
com.luciad.view.lightspeed.layer.plots.TLspPlotLayerBuilder
Direct Known Subclasses:
TLspPlotLayerBuilder

public class TLspPlotLayerBuilder extends ALspLayerBuilder
This builder is used to create a layer optimized for displaying large static datasets with points.

You can configure the following aspects using this builder:

See newBuilder() for default values.

To customize the styling, you need to use a TLspPlotStyle, or a styler that submits TLspPlotStyles.

Example:

   ILspLayer layer = TLspPLotLayerBuilder.newBuilder()
                                         .model(myModel)
                                         .label("Plots")
                                         .bodyStyles(REGULAR,
                                                     TLspPlotStyle.newBuilder()....build()
                                         .build()
 

Since:
2014.0
See Also: