I have a pin with price and had customisze tool tip in which I have text images but I am unable to bing images and text
Firstly I thought I might issue of my binding so I added handed image ie. also not visible
I have paid service of Syncfusion.
<maps:SfMaps x:Name="sfmaps"
>
<maps:SfMaps.Layers>
<maps:ImageryLayer
x:Name="layer"
GeoCoordinates="{Binding GeoCoordinate}"
Markers="{Binding CustomMarkers}"
RequestTileUri="ImageryLayer_RequestTileUri"
>
<maps:ImageryLayer.MarkerTemplate>
<DataTemplate>
<Grid WidthRequest="50" HeightRequest="30">
<ImageButton Source="Tooltip.png" Grid.Column="0" WidthRequest="200" HeightRequest="200" ></ImageButton>
<Label Text="{Binding Label}" TextColor="White" Grid.Column="0" HorizontalOptions="Center" VerticalOptions="Center" FontSize="Micro"/>
</Grid>
</DataTemplate>
</maps:ImageryLayer.MarkerTemplate>
<maps:ImageryLayer.MarkerSettings>
<maps:MapMarkerSetting MarkerIcon="Image" ImageSource="Tooltip.png" IconSize="15">
<maps:MapMarkerSetting.TooltipSettings>
<maps:TooltipSetting ShowTooltip="True" TextColor="Black" ValuePath="Label"
Margin="10" BackgroundColor="White"
StrokeColor="Black" StrokeWidth="2" Duration="5000" >
<maps:TooltipSetting.TooltipTemplate>
<DataTemplate>
<Frame x:Name ="frame" Padding="30" Margin="0" BackgroundColor="#FFFFFF" CornerRadius="4" HeightRequest="100" WidthRequest="200" Grid.Column="0" HorizontalOptions="EndAndExpand" VerticalOptions="EndAndExpand" IsVisible="False">
<Grid RowSpacing="5" WidthRequest="500" >
<Grid.RowDefinitions>
<RowDefinition Height="5*"/>
<RowDefinition Height="5*"/>
</Grid.RowDefinitions>
<Image Source="pin.png" ></Image>
<Label Text="Text" Grid.Row="1" Margin="10" FontSize="16" TextColor="Black" FontAttributes="Bold"></Label>
<rating:SfRating Value="{Binding Star}" ItemSize="14" Margin="15,35,10,0" Grid.Row="1" ReadOnly="True">
<rating:SfRating.RatingSettings>
<rating:SfRatingSettings UnRatedFill="Transparent" RatedFill="#fdb915" RatedStroke="Transparent" UnRatedStroke="Transparent" />
</rating:SfRating.RatingSettings>
</rating:SfRating>
<Label HorizontalOptions="FillAndExpand" Text="{Binding Ara}" TextColor="#666666" Margin="15,45,0,0" Grid.Row="1" FontSize="Medium" />
<Label Text="........................................................." TextColor="Gray" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" Margin="10,55,0,30" Grid.Row="1"></Label>
<Label Text="{Binding SlashPrice}" FontSize="12" TextColor="#999999" Grid.Row="1" Margin="15,70,0,0" />
<Label Text="{Binding Label}" TextColor="#ff0062" Grid.Row="1" Margin="150,70,0,40" FontAttributes="Bold" FontSize="14"/>
</Grid>
</Frame>
</DataTemplate>
</maps:TooltipSetting.TooltipTemplate>
</maps:TooltipSetting>
</maps:MapMarkerSetting.TooltipSettings>
</maps:MapMarkerSetting>
</maps:ImageryLayer.MarkerSettings>
</maps:ImageryLayer>
</maps:SfMaps.Layers>
</maps:SfMaps>