显示问题
解决办法
加上透明度0.8即可解决
//创建轨迹点
var trackPointPosition = SkyLineView.SgWorld.Creator.CreatePosition(trackInfos[index].JINGDU, trackInfos[index].WEIDU);
var imageLabelStyle = SkyLineView.SgWorld.Creator.CreateLabelStyle();
imageLabelStyle.LineColor = SkyLineView.SgWorld.Creator.CreateColor(255,0,0);
//设置透明度为0.8 防止透明的边缘会遮盖后面元素
imageLabelStyle.IconColor.SetAlpha(0.8);
imageLabelStyle.BackgroundColor = SkyLineView.SgWorld.Creator.CreateColor(255, 0, 0);
var imageLabel = SkyLineView.SgWorld.Creator.CreateImageLabel(trackPointPosition, imagePath, imageLabelStyle);