Use a symbol style to display a graphic on a graphics overlay.
      
  
    
Use case
Allows you to customize a graphic by assigning a unique symbol. For example, you may wish to display individual graphics for different landmarks across a region, and to style each one with a unique symbol.
How to use the sample
Observe the graphics on the map.
How it works
- Create a 
GraphicsOverlayand add it to theMapView. - Create a 
Symbolsuch asSimpleMarkerSymbol,SimpleLineSymbolorSimpleFillSymbol. - Create a 
Graphic, specifying aGeometryand aSymbol. - Add the 
Graphicto theGraphicsOverlay. 
Relevant API
- Geometry
 - Graphic
 - GraphicsOverlay
 - SimpleFillSymbol
 - SimpleLineSymbol
 - SimpleMarkerSymbol
 
Additional information
To set a symbol style across a number of graphics (e.g. showing trees as graphics sharing a symbol in a park), see the "Add graphics with renderer" sample.
Tags
display, fill, graphics, line, marker, overlay, point, symbol
Sample Code
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGISRuntime.Samples.AddGraphicsWithSymbols.AddGraphicsWithSymbols"
             xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Xamarin.Forms">
    <Grid>
        <esriUI:MapView x:Name="MyMapView" />
    </Grid>
</ContentPage>