<maps:ShapeFileLayer Uri="world1.shp" ItemsSource="{Binding Models}" MarkerItemsSource="{Binding Models}">
<maps:ShapeFileLayer.ShapeSettings>
<maps:ShapeSetting ShapeFill="Gray" />
</maps:ShapeFileLayer.ShapeSettings>
<maps:ShapeFileLayer.MarkerSettings>
<maps:MapMarkerSetting>
<maps:MapMarkerSetting.TooltipSettings>
<maps:TooltipSetting ShowTooltip="True" ValuePath="Label" TextColor="Black" BackgroundColor="Red"/>
</maps:MapMarkerSetting.TooltipSettings>
</maps:MapMarkerSetting>
</maps:ShapeFileLayer.MarkerSettings>
<maps:ShapeFileLayer.MarkerTemplate>
<DataTemplate>
<StackLayout IsClippedToBounds="false" HorizontalOptions="StartAndExpand" VerticalOptions="Center" HeightRequest="30">
<Image Source="pin.png" Scale="1" Aspect="AspectFit " HorizontalOptions="StartAndExpand" VerticalOptions="Center" HeightRequest="15" WidthRequest="23" />
</StackLayout>
</DataTemplate>
</maps:ShapeFileLayer.MarkerTemplate>
</maps:ShapeFileLayer>
</maps:SfMaps.Layers> |