Module Values.GetTileRequestSource

GetTile returns a tile. Map tiles are used by clients to render a map. They're addressed using a grid arrangement with an X coordinate, Y coordinate, and Z (zoom) level. For more information, see Tiles in the Amazon Location Service Developer Guide.

Sourcetype nonrec t = {
  1. additionalFeatures : TileAdditionalFeatureList.t option;
    (*

    A list of optional additional parameters such as map styles that can be requested for each result. Not supported in ap-southeast-1 and ap-southeast-5 regions for GrabMaps customers.

    *)
  2. tileset : Tileset.t;
    (*

    Specifies the desired tile set. For GrabMaps customers, ap-southeast-1 and ap-southeast-5 regions support only the vector.basemap value. Valid Values: raster.satellite | vector.basemap | vector.traffic | raster.dem

    *)
  3. z : GetTileRequestZString.t;
    (*

    The zoom value for the map tile.

    *)
  4. x : GetTileRequestXString.t;
    (*

    The X axis value for the map tile.

    *)
  5. y : GetTileRequestYString.t;
    (*

    The Y axis value for the map tile.

    *)
  6. key : ApiKey.t option;
    (*

    Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.

    *)
}
Sourceval context_ : string
Sourceval make : ?additionalFeatures:??? -> ?key:??? -> tileset:Tileset.t -> z:GetTileRequestZString.t -> x:GetTileRequestXString.t -> y:GetTileRequestYString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Tileset.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