We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5fb335 commit 99ca636Copy full SHA for 99ca636
articles/cosmos-db/sql-query-geospatial-intro.md
@@ -127,20 +127,20 @@ A **MultiPolygon** is an array of zero or more Polygons. **MultiPolygons** canno
127
```json
128
{
129
"type":"MultiPolygon",
130
- "coordinates":[ [
+ "coordinates":[[[
131
[52.0, 12.0],
132
[53.0, 12.0],
133
[53.0, 13.0],
134
[52.0, 13.0],
135
[52.0, 12.0]
136
- ],
137
- [
+ ]],
+ [[
138
[50.0, 0.0],
139
[51.0, 0.0],
140
[51.0, 5.0],
141
[50.0, 5.0],
142
[50.0, 0.0]
143
- ] ]
+ ]]]
144
}
145
```
146
0 commit comments