我希望你能帮助我。对于 GMap.net 的 WPF 版本,我在网络上找不到任何有用的东西。
问题:我看不到我的路线。
List<Location> points = PolylinePoint.Decode(responseData.routes.First().overview_polyline.points);
GMap.NET.WindowsPresentation.GMapRoute route = new GMap.NET.WindowsPresentation.GMapRoute(points.Select(x => new PointLatLng(x.Latitude.Value, x.Longitude.Value)));
route.ZIndex = ROUTESLIST;
route.Shape = new Line() { StrokeThickness = 4, Stroke = System.Windows.Media.Brushes.BlueViolet };
this.routenList.Clear();
this.routenList.Add(route);
主要问题是,我不能像 GMap.NET 教程中那样使用覆盖。
有什么建议么?