I want to draw polyline on map. I can't find any example or documentation. Could somone help?
// Initialize map:
gMap.MapProvider = GMap.NET.MapProviders.OpenStreetMapProvider.Instance;
GMap.NET.GMaps.Instance.Mode = GMap.NET.AccessMode.ServerAndCache;
gMap.Position = new PointLatLng(53.44827,14.49152);
//somepoints
//point1 = new PointLatLng(53.44827,14.49152);
//point2 = new PointLatLng(53.44827,14.49152);
//point3 = new PointLatLng(53.44827,14.49152);
//draw polyline
1)Create two lat,long points i.e. startLat,startLong & endLat,endLong
2)then use following code
Hope this resolves your issue.