Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

c# - Draw a polyline on the map using GMap.net

Yep, I am not the first who is asking, but I didn't found an answer (maybe, because my english is bad). How to draw a polyline on a map? Not a route (direction), but just a polyline, like in JS Google Maps API with function Polyline. I can not understand.

Thanks anyway.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Although slightly overkill, you can use the GMap routes capability to draw simple lines. This also has a major advantage that it lets you determine the length of that line (in km) if necessary. Here's how you would draw a single line:

GMapRoute line_layer;
GMapOverlay line_overlay

line_layer = new GMapRoute("single_line");
line_layer.Stroke = new Pen(Brushes.Black, 2); //width and color of line

line_overlay.Routes.Add(line_layer);
gMapControl1.Overlays.Add(line_overlay)

//Once the layer is created, simply add the two points you want

line_layer.Points.Add(new PointLatLng(lat, lon));
line_layer.Points.Add(new PointLatLng(lat2, lon2));

//Note that if you are using the MouseEventArgs you need to use local coordinates and convert them:
line_layer.Points.Add(gMapControl1.FromLocalToLatLng(e.X, e.Y));

//To force the draw, you need to update the route
gMapControl1.UpdateRouteLocalPosition(line_layer);

//you can even add markers at the end of the lines by adding markers to the same layer:

GMapMarker marker_ = new GMarkerCross(p);
line_overlay.Markers.Add(marker_);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...