# Distance

### getDistance

Returns the distance in meter between 2 or more coordinates.

```javascript
mapInstance.getDistance(coordinates)
```

#### Parameter

| Required Parameter | Description                                                                 | Type       |
| ------------------ | --------------------------------------------------------------------------- | ---------- |
| coordinates        | Array of latitude/longitude. The array must contain at least 2 coordinates. | JSON Array |

#### Example

```javascript
mapInstance.getDistance(
   [
       {lng: -122.019807, lat: 45.632433},
       {lng: -122.019767, lat: 45.632453},
       {lng: -122.01971, lat: 45.632472}
   ])
```

#### Return

Distance value in the meter.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://fatos-doc.fatos.biz/fatos-api/map/utilities/distance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
