Hi Team,
I Want to draw polyline between map markers using asp.net C# (web page) , i am using MapPolyline object but it is not working.
Aspx page code:
<asp:RadMap RenderMode="Lightweight" runat="server" ID="RadMap1" Zoom="10" CssClass="MyMap" Height="700px">
<CenterSettings Latitude="25.2854" Longitude="51.5310" />
</asp:RadMap>
C# Code:
MapPolyline polyline = new MapPolyline()
{
Points = p,
Stroke = new SolidColorBrush(c),
StrokeThickness = 2,
};
dynamicLayer.Items.Add(polyline);
Error: "The Type or namespace MapPolyline could not be found"
What is the possible way to draw polyline between markers on asp.net radmap Please suggest.
Regrads
Manoj Sahu.