Calculate an isochrone from a point
routing.isochrone(**kwargs) -> GeoJsonFeature { geometry, properties, type, 2 more }
GET/api/v1/isochrone
Calculate an isochrone from a point
Calculate an isochrone from a point
require "plaza"
plaza = Plaza::Client.new(
api_key: "My API Key",
environment: "local" # defaults to "production"
)
geo_json_feature = plaza.routing.isochrone(lat: 0, lng: 0, time: 0)
puts(geo_json_feature)