谷歌地图中的路线方向

本文关键字:方向 谷歌地图 | 更新日期: 2023-09-27 18:20:42

我的代码已经得到了两点之间的聚亚胺,但我希望能够在谷歌地图上显示的是从一点到另一点的类似于聚亚胺的路线方向,比如A到B。关于如何显示路线方向的任何想法。以下是我在asp.net c#中获得折线的代码:

List<LatLng> Coords = new List<LatLng>();
while (reader.Read())
{
    // perhaps even: lat = reader.GetDouble(0);
    lat = Convert.ToDouble(reader[0].ToString());
    log = Convert.ToDouble(reader[1].ToString());
    // add the next point in the polyline
    Coords.Add(new LatLng(lat, log));
}
GMap.Add(new PolyLine(Coords, Color.Red, 100f, 2, new InfoWindow("")));
// Lastly, identify the center of the polyline and add that point:
GMap.Center = Coords[Coords.Count / 2];
GMap.ZoomLevel = 12;
GMap.Add(new ImageMarker(GMap.Center, " ", new InfoWindow(""), "");

提前谢谢。

谷歌地图中的路线方向

Google有一个路由API可以使用。