Visualizer.Draw Method
Draws a feature on a drawable.
Draw(Feature feature, Drawable drawable)
Draws a feature on a drawable.Syntax
public void Draw (
Feature feature,
Drawable drawable
)
Parameters
The feature to draw.
The drawable to draw the feature on.
Remarks
This method may only be called from the ICustomVisualizer.Draw method in a custom visualizer. It simply draws a feature directly to the drawable, using the current transform of the drawable. This can be used to easily extend or modify the functionality of the standard visualizers with custom ones.
Example
// Draws line and polygon features on a drawable with a LineVisualizer
public static void DrawLineOrPolygonFeatureOnDrawable(Feature feature, Drawable drawable)
{
if (feature.GeometryType == GeometryType.Line ||
feature.GeometryType == GeometryType.Polygon)
{
// Create new LineVisualizer
LineVisualizer lineVisualizer = new LineVisualizer();
// Draw the feature on the Drawable.
// This method may only be called from the ICustomVisualizer.Draw method
// in a custom visualizer. It simply draws a feature directly to the drawable,
// using the current transform of the drawable
lineVisualizer.Draw(feature, drawable);
}
}
|// Draws line and polygon features on a drawable with a LineVisualizer
static void drawLineOrPolygonFeatureOnDrawable(FeaturePtr feature, DrawablePtr drawable)
{
if (feature->geometryType() == GeometryTypeLine ||
feature->geometryType() == GeometryTypePolygon)
{
// Create new LineVisualizer
LineVisualizerPtr lineVisualizer = new LineVisualizer();
// Draw the feature on the Drawable.
// This method may only be called from the ICustomVisualizer.Draw method
// in a custom visualizer. It simply draws a feature directly to the drawable,
// using the current transform of the drawable
lineVisualizer->draw(feature, drawable);
}
}
|// Draws line and polygon features on a drawable with a LineVisualizer
public static void drawLineOrPolygonFeatureOnDrawable(Feature feature, Drawable drawable)
{
if (feature.getGeometryType() == GeometryType.LINE ||
feature.getGeometryType() == GeometryType.POLYGON)
{
// Create new LineVisualizer
LineVisualizer lineVisualizer = new LineVisualizer();
// Draw the feature on the Drawable.
// This method may only be called from the ICustomVisualizer.Draw method
// in a custom visualizer. It simply draws a feature directly to the drawable,
// using the current transform of the drawable
lineVisualizer.draw(feature, drawable);
}
}
|
Platforms
Windows, Linux, Android