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

com.google.maps.model.DistanceMatrixElement 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.model;

import java.io.Serializable;

/**
 * A single result corresponding to an origin/destination pair in a Distance Matrix response.
 *
 * 

Be sure to check the status for each element, as a matrix response can have a mix of * successful and failed elements depending on the connectivity of the origin and destination. */ public class DistanceMatrixElement implements Serializable { private static final long serialVersionUID = 1L; /** * The status of the request for this origin/destination pair. * *

Will be one of {@link com.google.maps.model.DistanceMatrixElementStatus}. */ public DistanceMatrixElementStatus status; /** The total duration of this leg. */ public Duration duration; /** * The length of time to travel this route, based on current and historical traffic conditions. * The duration in traffic will only be returned if all of the following are true: * *

    *
  1. The request includes a departureTime parameter. *
  2. The request includes a valid API key or a valid Google Maps APIs Premium Plan client ID * and signature. *
  3. Traffic conditions are available for the requested route. *
  4. The mode parameter is set to driving. *
*/ public Duration durationInTraffic; /** {@code distance} indicates the total distance covered by this leg. */ public Distance distance; /** {@code fare} contains information about the fare (that is, the ticket costs) on this route. */ public Fare fare; @Override public String toString() { String str = String.format( "[DistanceMatrixElement %s distance=%s, duration=%s", status, distance, duration); if (durationInTraffic != null) { str = str + ", durationInTraffic=" + durationInTraffic; } if (fare != null) { str = str + ", fare=" + fare; } str = str + "]"; return str; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy