Exemplo n.º 1
0
 private void AddScaleProperty(XElement iconElement, BillboardCesiumWriter billboard)
 {
     XElement scaleElement = iconElement.Element(Document.Namespace + "scale");
     if (scaleElement != null)
     {
         billboard.WriteScaleProperty(double.Parse(scaleElement.Value));
     }
 }