Module Values_0.GeospatialMapStyleSource

The map style properties for a map.

Sourcetype nonrec t = {
  1. baseMapStyle : BaseMapStyleType.t option;
    (*

    The selected base map style.

    *)
  2. backgroundColor : HexColorWithTransparency.t option;
    (*

    The background color and opacity values for a map.

    *)
  3. baseMapVisibility : Visibility.t option;
    (*

    The state of visibility for the base map.

    *)
}
Sourceval make : ?baseMapStyle:??? -> ?backgroundColor:??? -> ?baseMapVisibility:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of HexColorWithTransparency.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t