I am adding waypoints to a route using longitude/latitude coordinates using:
objRoute.Waypoints.Add .GetLocation(RS!LATITUDE, RS!LONGITUDE)
When calculating the route and displaying the ordered waypoints using
objRoute.Waypoints.Item(k).Name
the Name property displays the numeric values of the latitude a longitude coordinates.
My question is:
How can I asign the waypoints my own (user defined) names so that when I display route waypoints or route directions, it displays my own user defined names for the waypoint instead of the longitude/latitude values?