Values.GetTileRequestSourceGetTile 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.
type nonrec t = {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.
*)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
*)z : GetTileRequestZString.t;The zoom value for the map tile.
*)x : GetTileRequestXString.t;The X axis value for the map tile.
*)y : GetTileRequestYString.t;The Y axis value for the map tile.
*)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.
*)}val make :
?additionalFeatures:??? ->
?key:??? ->
tileset:Tileset.t ->
z:GetTileRequestZString.t ->
x:GetTileRequestXString.t ->
y:GetTileRequestYString.t ->
unit ->
t