1

我正在尝试创建一个mapcontrol,我需要将当前的boundingrectangle 分成25 块,现在我意识到没有像wp7 版本那样的boundingrectangle。

我该如何解决这个问题呢?如果可能的话,我会避免使用诺基亚地图。

4

1 回答 1

0
    private LocationRectangle GetMapBounds()
    {
        GeoCoordinate topLeft = mapControl.ConvertViewportPointToGeoCoordinate(new Point(0, 0));
        GeoCoordinate bottomRight = mapControl.ConvertViewportPointToGeoCoordinate(new Point(mapControl.ActualWidth, mapControl.ActualHeight));

        if (topLeft != null && bottomRight != null)
        {
            return LocationRectangle.CreateBoundingRectangle(new[] { topLeft, bottomRight });
        }

        return null;
    }
于 2013-08-22T20:02:03.803 回答