All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.maps.DirectionsApi Maven / Gradle / Ivy

Go to download

Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/

There is a newer version: 2.2.0
Show newest version
/*
 * Copyright 2014 Google Inc. All rights reserved.
 *
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

package com.google.maps;

import com.google.maps.errors.ApiException;
import com.google.maps.internal.ApiConfig;
import com.google.maps.internal.ApiResponse;
import com.google.maps.internal.StringJoin.UrlValue;
import com.google.maps.model.DirectionsResult;
import com.google.maps.model.DirectionsRoute;
import com.google.maps.model.GeocodedWaypoint;

/**
 * The Google Directions API is a service that calculates directions between locations using an HTTP
 * request. You can search for directions for several modes of transportation, include transit,
 * driving, walking, or cycling. Directions may specify origins, destinations, and waypoints, either
 * as text strings (e.g. "Chicago, IL" or "Darwin, NT, Australia") or as latitude/longitude
 * coordinates. The Directions API can return multi-part directions using a series of waypoints.
 *
 * 

See the Directions * API Developer's Guide for more information. */ public class DirectionsApi { static final ApiConfig API_CONFIG = new ApiConfig("/maps/api/directions/json"); private DirectionsApi() {} /** * Creates a new DirectionsApiRequest using the given context, with all attributes at their * default values. * * @param context Context that the DirectionsApiRequest will be executed against * @return A newly constructed DirectionsApiRequest between the given points. */ public static DirectionsApiRequest newRequest(GeoApiContext context) { return new DirectionsApiRequest(context); } /** * Creates a new DirectionsApiRequest between the given origin and destination, using the defaults * for all other options. * * @param context Context that the DirectionsApiRequest will be executed against * @param origin Origin address as text * @param destination Destination address as text * @return A newly constructed DirectionsApiRequest between the given points. */ public static DirectionsApiRequest getDirections( GeoApiContext context, String origin, String destination) { return new DirectionsApiRequest(context).origin(origin).destination(destination); } public static class Response implements ApiResponse { public String status; public String errorMessage; public GeocodedWaypoint[] geocodedWaypoints; public DirectionsRoute[] routes; @Override public boolean successful() { return "OK".equals(status); } @Override public DirectionsResult getResult() { DirectionsResult result = new DirectionsResult(); result.geocodedWaypoints = geocodedWaypoints; result.routes = routes; return result; } @Override public ApiException getError() { if (successful()) { return null; } return ApiException.from(status, errorMessage); } } /** * Directions may be calculated that adhere to certain restrictions. This is configured by calling * {@link com.google.maps.DirectionsApiRequest#avoid} or {@link * com.google.maps.DistanceMatrixApiRequest#avoid}. * * @see * Restrictions in the Directions API * @see * Distance Matrix API Request Parameters */ public enum RouteRestriction implements UrlValue { /** Indicates that the calculated route should avoid toll roads/bridges. */ TOLLS("tolls"), /** Indicates that the calculated route should avoid highways. */ HIGHWAYS("highways"), /** Indicates that the calculated route should avoid ferries. */ FERRIES("ferries"), /** Indicates that the calculated route should avoid indoor areas. */ INDOOR("indoor"); private final String restriction; RouteRestriction(String restriction) { this.restriction = restriction; } @Override public String toString() { return restriction; } @Override public String toUrlValue() { return restriction; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy