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 1672338 commit 9ffebd2Copy full SHA for 9ffebd2
docs/reference/elasticsearch/mapping-reference/geo-point.md
@@ -219,7 +219,7 @@ of official GA features.
219
220
Synthetic source may sort `geo_point` fields (first by latitude and then
221
longitude) and reduces them to their stored precision. Additionally, unlike most
222
-types, arrays of `geo_point` fields will not preserve order
+types, arrays of `geo_point` fields will not preserve order if
223
`synthetic_source_keep` is set to `arrays`. For example:
224
225
$$$synthetic-source-geo-point-example$$$
@@ -248,8 +248,8 @@ PUT idx
248
PUT idx/_doc/1
249
{
250
"point": [
251
- {"lat":-90, "lon":-80},
252
- {"lat":10, "lon":30}
+ {"lat":10, "lon":30},
+ {"lat":-90, "lon":-80}
253
]
254
}
255
```
0 commit comments