Skip to content

Commit 94dd659

Browse files
authored
Merge pull request #107577 from timsander1/master
update MultiPolygon example
2 parents 99fb5ac + 99ca636 commit 94dd659

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/cosmos-db/sql-query-geospatial-intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,20 +127,20 @@ A **MultiPolygon** is an array of zero or more Polygons. **MultiPolygons** canno
127127
```json
128128
{
129129
"type":"MultiPolygon",
130-
"coordinates":[ [
130+
"coordinates":[[[
131131
[52.0, 12.0],
132132
[53.0, 12.0],
133133
[53.0, 13.0],
134134
[52.0, 13.0],
135135
[52.0, 12.0]
136-
],
137-
[
136+
]],
137+
[[
138138
[50.0, 0.0],
139139
[51.0, 0.0],
140140
[51.0, 5.0],
141141
[50.0, 5.0],
142142
[50.0, 0.0]
143-
] ]
143+
]]]
144144
}
145145
```
146146

0 commit comments

Comments
 (0)