Module Values.MapConfigurationUpdateSource

Specifies the political view for the style.

Sourcetype nonrec t = {
  1. politicalView : CountryCode3OrEmpty.t option;
    (*

    Specifies the political view for the style. Set to an empty string to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND for the Indian view. Not all map resources or styles support political view styles. See Political views for more information.

    *)
  2. customLayers : CustomLayerList.t option;
    (*

    Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style. Default is unset. Not all map resources or styles support custom layers. See Custom Layers for more information.

    *)
}
Sourceval make : ?politicalView:??? -> ?customLayers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CustomLayer.t ] list | `String of CountryCode3OrEmpty.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