Ejemplo n.º 1
0
        private static string GenerateMarkerId(MarkerList markers, string markerId)
        {
            int    c  = 1;
            string id = markerId;

            while (markers.Any(i => i.Id == id))
            {
                id = markerId + c;
                c++;
            }
            return(id);
        }