Create simple geometry types.
- Use the constructors for the various simple
Geometry
types includingPoint
,Polyline
,Multipoint
,Polygon
, andEnvelope
. - To display the geometry, create a
Graphic
passing in the geometry, and aSymbol
appropriate for the geometry type. - Add the graphic to a graphics overlay and add the overlay to a map view.
- Envelope
- Multipoint
- Point
- PointCollection
- Polygon
- Polyline
A geometry made of multiple points usually takes a PointCollection
as an argument or is created through a builder.
Geometry, Graphic