0

我使用折线在 Bing 地图(Metro 应用程序)上画圆,但它在地图上出现锯齿,不流畅。我认为它没有笔画厚度。

我该如何解决?谢谢

    MapShapeLayer shapeLayer = new MapShapeLayer();
    MapPolyline polyline = new MapPolyline();
    polyline.Locations = DrawMapsCircle(location, 1000);

    polyline.Color = Windows.UI.Colors.Red;
    polyline.Width = 1;

    shapeLayer.Shapes.Add(polyline);

    maps.ShapeLayers.Add(shapeLayer);
4

1 回答 1

0

尝试增加折线的宽度

polyline.Width = 5;
于 2012-08-06T10:55:50.813 回答