0

我想通过在 windows phone 应用程序开发中提供位置地址来获取地理位置。??//

4

2 回答 2

1

使用Bing 地图地理编码服务

于 2012-09-20T14:49:14.763 回答
1
  1. 首先取一个文本块保存并查看坐标。
  2. 现在将其命名为 txtBlock1 。

现在您可以在 Map Hold 事件中添加以下代码。

握住鼠标的点。它将向您显示经度和纬度的坐标。

您可以在任何地方将它们用作字符串或位置

mapMain.Hold += (s, e) =>

                {
                    Point p = e.GetPosition(this.mapMain);

                    GeoCoordinate geo = new GeoCoordinate();

                    geo = mapMain.ViewportPointToLocation(p);

                    txtBlock1.text = geo.ToString();


                };

希望能帮助到你... :-)

于 2012-10-03T12:10:31.110 回答