## Calculate an isochrone from a point `$client->routing->isochrone(float lat, float lng, float time, ?string mode): GeoJsonFeature` **get** `/api/v1/isochrone` Calculate an isochrone from a point ### Parameters - `lat: float` Latitude - `lng: float` Longitude - `time: float` Travel time in seconds (1-7200) - `mode?:optional string` Travel mode (auto, foot, bicycle) ### Returns - `GeoJsonFeature` - `GeoJsonGeometry geometry` - `array properties` - `Type type` - `?string id` Feature identifier (type/osm_id) - `?int osmID` OpenStreetMap ID ### Example ```php routing->isochrone( lat: 0, lng: 0, time: 0, mode: 'mode' ); var_dump($geoJsonFeature); ```