On my Asp.Net C # page I show a google map and in a list I have several addresses (longitude, latitude) and I want my map to appear with a reference to each of them ... How can I do it? / p>
foreach (var item in lista)
{
double? latitud = item.config.Position.Latitude;
double? longitud = item.config.Position.Longitude;
}