Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1bcc20d
Add blockchain to latest profile
markcowl Aug 22, 2019
7b46097
Add additional types
markcowl Aug 22, 2019
5c3aa63
Merge https://github.com/Azure/azure-rest-api-specs into main
ambientlight Jul 26, 2021
21970f3
Merge https://github.com/Azure/azure-rest-api-specs into main
ambientlight Aug 23, 2021
e848f04
Merge https://github.com/Azure/azure-rest-api-specs into main
ambientlight Sep 1, 2021
1b4b5d7
Merge https://github.com/Azure/azure-rest-api-specs
Oct 9, 2021
4c7457e
Merge https://github.com/Azure/azure-rest-api-specs
Oct 26, 2021
7c701c5
address review comments
Oct 10, 2021
92866d9
model validation, prettier fixes
Oct 12, 2021
e5a8369
rollback accidental legacy doc changes
Oct 12, 2021
93b4af5
resolve parameter name clashing for Description
Oct 12, 2021
069bd09
remove the need for ExtendedGeoJsonFeatureCollection to define a desc…
Oct 26, 2021
814cd5c
alias and tileset at 1.0 is not in main
Oct 26, 2021
928b59e
leverage common's PositionLongitude/LatitudeAbbreviated for search Bi…
Oct 26, 2021
2dad123
address @tjprescott comments
Oct 26, 2021
cb8bc2c
Revert "leverage common's PositionLongitude/LatitudeAbbreviated for s…
Oct 26, 2021
1db53b7
clarift GeofenceGeometry distance units in descriptions
Oct 26, 2021
137c6ce
remove remaining x-ms-client-flatten
Oct 26, 2021
62dd35d
renamed OutputOntology enum model name
ambientlight Oct 26, 2021
8ca700e
rename StyleRuleType to RuleType to fix name collision
Oct 26, 2021
84995a2
Merge branch 'dev-maps-Creator-2.0-reconciled' of https://github.com/…
Oct 26, 2021
bc33c0d
better StyleRule enum naming
Oct 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions specification/maps/data-plane/Common/preview/1.0/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,16 @@
}
}
},
"BoundingBox": {
"x-ms-client-name": "boundingBox",
"description": "Bounding box. Projection used - EPSG:3857. Format : 'minLon, minLat, maxLon, maxLat'.",
"type": "array",
"readOnly": true,
"items": {
"type": "number",
"format": "double"
}
},
"GeoJsonPosition": {
"description": "A `Position` is an array of numbers with two or more elements. The first two elements are _longitude_ and _latitude_, precisely in that order. _Altitude/Elevation_ is an optional third element. Please refer to [RFC 7946](https://tools.ietf.org/html/rfc7946#section-3.1.1) for details.",
"type": "array",
Expand Down Expand Up @@ -722,6 +732,30 @@
]
}
},
"PositionLatitudeAbbreviated": {
"name": "lat",
"x-ms-client-name": "Latitude",
"description": "The latitude of the location being passed. Example: 48.36.",
"type": "number",
"in": "query",
"required": true,
"x-ms-parameter-location": "method",
"x-ms-parameter-grouping": {
"name": "position"
}
},
"PositionLongitudeAbbreviated": {
"name": "lon",
"x-ms-client-name": "Longitude",
"description": "The longitude of the location being passed. Example: -124.63.",
"type": "number",
"in": "query",
"required": true,
"x-ms-parameter-location": "method",
"x-ms-parameter-grouping": {
"name": "position"
}
},
"xTileIndex": {
"name": "x",
"in": "query",
Expand Down
Loading