public MapTypeStyleBuilder HueColor(Color hueColor)
 {
     Style.Stylers.Add(new { hue = hueColor.ToHtml() });
     return this;
 }
 public MapTypeStyleBuilder Color(Color color)
 {
     Style.Stylers.Add(new { color = color.ToHtml() } );
     return this;
 }