Class IsochroneResource

java.lang.Object
com.graphhopper.resources.IsochroneResource

@Path("isochrone") public class IsochroneResource extends Object
  • Constructor Details

  • Method Details

    • doGet

      @GET @Produces("application/json") public javax.ws.rs.core.Response doGet(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("profile") String profileName, @QueryParam("buckets") @Range(min=1L,max=20L) @DefaultValue("1") @Range(min=1L,max=20L) OptionalInt nBuckets, @QueryParam("reverse_flow") @DefaultValue("false") boolean reverseFlow, @QueryParam("point") @NotNull @NotNull GHPointParam point, @QueryParam("time_limit") @DefaultValue("600") OptionalLong timeLimitInSeconds, @QueryParam("distance_limit") @DefaultValue("-1") OptionalLong distanceLimitInMeter, @QueryParam("weight_limit") @DefaultValue("-1") OptionalLong weightLimit, @QueryParam("type") @DefaultValue("json") IsochroneResource.ResponseType respType, @QueryParam("tolerance") @DefaultValue("0") double toleranceInMeter, @QueryParam("full_geometry") @DefaultValue("false") boolean fullGeometry)