Skip to content

Commit c22301a

Browse files
address reviewer feedback
1 parent d615e4c commit c22301a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn/filtering_and_sorting/geosearch.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Due to Meilisearch allowing malformed `_geo` fields in the following versions (v
2121

2222
## Preparing documents for location-based search
2323

24-
In order to start filtering and sorting documents based on their geographic location, you must make sure they contain a valid `_geo` or `_geojson` field.
24+
To start filtering documents based on their geographic location, you must make sure they contain a valid `_geo` or `_geojson` field. If you also want to sort documents geogeraphically, they must have a valid `_geo` field.
2525

2626
`_geo` and `_geojson` are reserved fields. If you include one of them in your documents, Meilisearch expects its value to conform to a specific format.
2727

@@ -52,9 +52,9 @@ When using JSON and NDJSON, `_geo` must contain an object with two keys: `lat` a
5252
}
5353
```
5454

55-
Meilisearch does not support transmeridian shapes. If your document includes a transmeridian shape, split it into two separate shapes grouped as a `MultiPolygon` or `MultiLine`. Transmeridian shapes are polygons that cross the 180th or antimeridian.
55+
Meilisearch does not support transmeridian shapes. If your document includes a transmeridian shape, split it into two separate shapes grouped as a `MultiPolygon` or `MultiLine`. Transmeridian shapes are polygons or lines that cross the 180th meridian.
5656

57-
Meilisearch does not support polygons with holes. If your polygon consists of an external ring and an inner empty space, Meilisearch ignores the hole and treats the polygon as a solid shape.
57+
**Meilisearch does not support polygons with holes**. If your polygon consists of an external ring and an inner empty space, Meilisearch ignores the hole and treats the polygon as a solid shape.
5858

5959
<Note>
6060
### Using `_geo` and `_geojson` together

0 commit comments

Comments
 (0)