Skip to content
Merged
3 changes: 3 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ checkin
checkmark
checknameavailability
checkpointing
Chttp
CIDR
CIDRs
CIFS
Expand Down Expand Up @@ -704,6 +705,7 @@ FarmBeats
fatherable
faultable
fconfig
Fcontoso
FDID
fearthecowboy
featurecapabilities
Expand Down Expand Up @@ -737,6 +739,7 @@ forceclosehandles
forestsummary
formrecognizer
FPGA
Fpushpins
fqdn
FQDNs
Français
Expand Down
49 changes: 46 additions & 3 deletions specification/maps/data-plane/Common/preview/1.0/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -621,22 +621,65 @@
},
"xTileIndex": {
"name": "x",
"x-ms-client-name": "xTileIndex",
"in": "query",
"description": "X coordinate of the tile on zoom grid. Value must be in the range [0, 2<sup>`zoom`</sup> -1].\n\nPlease see [Zoom Levels and Tile Grid](https://docs.microsoft.com/en-us/azure/location-based-services/zoom-levels-and-tile-grid) for details.",
"required": true,
"type": "integer",
"format": "int32",
"x-ms-parameter-location": "method"
"x-ms-parameter-location": "method",
"x-ms-parameter-grouping": {
"name": "tileIndex"
}
},
"yTileIndex": {
"name": "y",
"x-ms-client-name": "yTileIndex",
"in": "query",
"description": "Y coordinate of the tile on zoom grid. Value must be in the range [0, 2<sup>`zoom`</sup> -1].\n\nPlease see [Zoom Levels and Tile Grid](https://docs.microsoft.com/en-us/azure/location-based-services/zoom-levels-and-tile-grid) for details.",
"required": true,
"type": "integer",
"format": "int32",
"x-ms-parameter-location": "method",
"x-ms-parameter-grouping": {
"name": "tileIndex"
}
},
"zTileIndex": {
"name": "zoom",
"x-ms-client-name": "z",
"in": "query",
"description": "Zoom level for the desired tile. \n\nPlease see [Zoom Levels and Tile Grid](https://docs.microsoft.com/en-us/azure/location-based-services/zoom-levels-and-tile-grid) for details.",
"required": true,
"type": "integer",
"format": "int32",
"x-ms-parameter-location": "method",
"x-ms-parameter-grouping": {
"name": "tileIndex"
}
},
"IncludeText": {
"name": "text",
"x-ms-client-name": "includeText",
"in": "query",
"description": "Yes/no value to exclude textual data from response. Only images and country names will be in response.",
"type": "string",
"enum": [
"yes",
"no"
],
"x-ms-enum": {
"name": "IncludeText",
"modelAsString": true,
"values": [
{
"value": "yes",
"description": "Include all textual data in response."
},
{
"value": "no",
"description": "Exclude textual data from response. Only images and country names will be in response."
}
]
},
"x-ms-parameter-location": "method"
}
},
Expand Down
Loading