|
<syncfusion:ShapeFileLayer ItemsSource="{Binding Countries}" Uri="MapsGettingStarted_Sample.Assets.ShapeFiles.world1.shp" ShapeIDPath="NAME" ShapeIDTableField="NAME" LabelPath="NAME" FontSize="10">
<syncfusion:ShapeFileLayer.ItemsTemplate>
<DataTemplate>
<Grid Opacity="0.75">
<TextBlock Text="{Binding Data.NAME}"
FontSize="14" Margin="10 5"/>
</Grid>
</DataTemplate>
</syncfusion:ShapeFileLayer.ItemsTemplate>
<syncfusion:ShapeFileLayer.ShapeSettings>
<syncfusion:ShapeSetting ShapeValuePath="Population" ShapeColorValuePath="Population">
<syncfusion:ShapeSetting.FillSetting>
<syncfusion:ShapeFillSetting AutoFillColors="False">
<syncfusion:ShapeFillSetting.ColorMappings>
<syncfusion:RangeColorMapping To="1500000000" From="750000000" Color="Red"/>
<syncfusion:RangeColorMapping To="750000000" From="0" Color="Green"/>
<syncfusion:RangeColorMapping To="0" From="0" Color="Yellow"/>
</syncfusion:ShapeFillSetting.ColorMappings>
</syncfusion:ShapeFillSetting>
</syncfusion:ShapeSetting.FillSetting>
</syncfusion:ShapeSetting>
</syncfusion:ShapeFileLayer.ShapeSettings>
</syncfusion:ShapeFileLayer> |