Closed ivanteles closed 2 years ago
Just updated to .net6
the following code should work.
mappings.For<Estabelecimento>(binding => binding.ItemDataBound((marker, obj) =>
{
marker.Latitude = double.Parse(obj.Latitude);
marker.Longitude = double.Parse(obj.Logitude);
marker.Title = obj.Nome;
marker.ZIndex = 2;
marker.Window = new InfoWindow(marker)
{
Template =
{
Html = $"<strong>{obj.Nome}</strong>"
},
};
})
Please try that and reopen this issue if it does not work
Not working