I used this code for my app:
var line = new MapPolyline();
line.StrokeColor = Colors.Red;
line.StrokeThickness = 2;
line.Path.Add(new GeoCoordinate(lat,long)); //<== this
line.Path.Add(new GeoCoordinate(lat, long)); //<== and this
MyMap.MapElements.Add(line);
I used Windows phone 8.1 At the marked locations receive this error:
'Windows.Devices.Geolocation.Geopath' does not contain a definition for 'Add' and no extension method 'Add' accepting a first argument of type 'Windows.Devices.Geolocation.Geopath' could be found (are you missing a using directive or an assembly reference?)
What to do to work??
P.S. I have using Windows.Devices.Geolocation;
That's right. You have to generate the list separately and pass it using the constructor:
I know - it's a bit tricky. But I think the purpose is that you can't manipulate the path once the polygon is drawn on the map.