Docs: Default distance unit in geo distance agg is metres, not km

Closes #9812
This commit is contained in:
Clinton Gormley 2015-02-28 01:45:29 +01:00
parent 0c8da6bb84
commit e194fb3a07
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ The specified field must be of type `geo_point` (which can only be set explicitl
* String format: `"52.3760, 4.894"` - where the first number is the `lat` and the second is the `lon`
* Array format: `[4.894, 52.3760]` - which is based on the `GeoJson` standard and where the first number is the `lon` and the second one is the `lat`
By default, the distance unit is `km` but it can also accept: `mi` (miles), `in` (inch), `yd` (yards), `m` (meters), `cm` (centimeters), `mm` (millimeters).
By default, the distance unit is `m` (metres) but it can also accept: `mi` (miles), `in` (inches), `yd` (yards), `km` (kilometers), `cm` (centimeters), `mm` (millimeters).
[source,js]
--------------------------------------------------