public override string ToString() { var options = new JsonCollection(false); if (Position.HasValue) { options.Add("position", "google.maps.ControlPosition." + Position.Value.ToString().ToUpperInvariant()); } options.Add("style", "google.maps.MapTypeControlStyle." + Enum.GetName(typeof(MapTypeControlStyle), Style).ToUpperInvariant(), Style != MapTypeControlStyle.Default); // TODO :: Review MapType if ((mapType == typeof(Map) || mapType.Name == "GMap") && MapTypeIds != null && MapTypeIds.Count > 0) { var types = new JsArrayCollection(); foreach (var mapTypeId in MapTypeIds) { types.Add(mapTypeId); } options.Add("mapTypeIds", types); } return(options.ToString()); }
internal static string GetStyles(IEnumerable <MapTypeStyle> styles) { var options = new JsArrayCollection(); foreach (var style in styles) { options.Add(style.ToString()); } return(options.ToString()); }