We are using the SFMaps MarkerTemplate to add more detail to the specific items. I'm trying to get the Shape to show. Below is an quick code example :
<MapsMarkerSettings>
<MapsMarker TValue="MapModel" Visible="true" Fill="Red"
Shape="MarkerType.Circle"
Height="30" Width="30" DataSource="@AtlanticStates" LegendText="Postalcode">
<MarkerTemplate >
@{
var data = context as MapModel;
<div style="width:70px;cursor:default;font-family:Arial;font-size:10px;font-weight:600;">@data.Postalcode <br />@data.Percent %</div>
}
</MarkerTemplate>
</MapsMarker>
</MapsMarkerSettings>
Any help is appreciated!