|
<ContentPage.Resources>
<Style x:Key="Icons" TargetType="Label">
<Setter Property="FontFamily" Value="{StaticResource CustomFont}" />
<Setter Property="Text" Value=""/>
</Style>
</ContentPage.Resources>
<ContentPage.Content>
<Grid Margin="20" x:Name="grid">
<maps:SfMaps x:Name="sfmap" BackgroundColor="White">
<maps:SfMaps.Layers >
<maps:ShapeFileLayer Uri="world1.shp" >
<maps:ShapeFileLayer.ShapeSettings>
<maps:ShapeSetting ShapeFill="Gray" />
</maps:ShapeFileLayer.ShapeSettings>
<maps:ShapeFileLayer.MarkerSettings>
<maps:MapMarkerSetting x:Name="markerSetting"
HorizontalAlignment="Center"
VerticalAlignment="Near" />
</maps:ShapeFileLayer.MarkerSettings>
<maps:ShapeFileLayer.Markers>
<maps:MapMarker Latitude="38.8833" Longitude= "-77.0167" />
</maps:ShapeFileLayer.Markers>
<maps:ShapeFileLayer.MarkerTemplate>
<DataTemplate >
<Label Style="{StaticResource Icons}" />
</DataTemplate>
</maps:ShapeFileLayer.MarkerTemplate>
</maps:ShapeFileLayer>
</maps:SfMaps.Layers>
</maps:SfMaps>
</Grid>
</ContentPage.Content> |