ARCGIS Runtime for .NET如何在SceneView中设置文本符号的背景颜色

时间:2016-06-27 18:00:52

标签: c# .net arcgis arcgis-runtime

我的代码如下所示:

            TextSymbol ts = new TextSymbol()
            {
                Font = new SymbolFont("Arial", 18),
                BackgroundColor = Color.FromArgb(160, 255, 255, 255),
                HorizontalTextAlignment = HorizontalTextAlignment.Center,
                VerticalTextAlignment = VerticalTextAlignment.Baseline,
                Text = icon.description,
                XOffset = 0,
                YOffset = -icon.height
            };


            var pointGraphic = new Graphic(GeometryEngine.Project(new MapPoint(icon.Longitude, icon.Latitude, 100, wgs84), MyViewBase.SpatialReference), ts);

文本符号在MapView上按预期显示,但SceneView没有背景框,文本不在适当的纬度/经度下居中。

此功能是否不适用于SceneView?如果没有,我该怎么做?

1 个答案:

答案 0 :(得分:0)

不幸的是,第一个v100版本不支持文本背景。我们希望在下一次更新中有它,但它还没有,所以我不能100%肯定地承诺它。

我们确实支持轮廓颜色,所以也许您可以使用它?