Example usage for com.google.gwt.maps.client.geocode StatusCodes UNKNOWN_DIRECTIONS

List of usage examples for com.google.gwt.maps.client.geocode StatusCodes UNKNOWN_DIRECTIONS

Introduction

In this page you can find the example usage for com.google.gwt.maps.client.geocode StatusCodes UNKNOWN_DIRECTIONS.

Prototype

int UNKNOWN_DIRECTIONS

To view the source code for com.google.gwt.maps.client.geocode StatusCodes UNKNOWN_DIRECTIONS.

Click Source Link

Document

The Directions object could not compute directions between the points mentioned in the query.

Usage

From source file:org.maps.client.Maps.java

License:Apache License

private String getMessage(int statusCode) {
    String answer = "Unknown reason";
    if (statusCode == StatusCodes.API_ERROR) {
        answer = "API Error";
    } else if (statusCode == StatusCodes.BAD_KEY) {
        answer = "Bad Key";
    } else if (statusCode == StatusCodes.BAD_REQUEST) {
        answer = "Bad Request";
    } else if (statusCode == StatusCodes.MISSING_ADDRESS) {
        answer = "Missing Address";
    } else if (statusCode == StatusCodes.SERVER_ERROR) {
        answer = "Google Server Error";
    } else if (statusCode == StatusCodes.MISSING_QUERY) {
        answer = "Missing Queury";
    } else if (statusCode == StatusCodes.SUCCESS) {
        answer = "Success";
    } else if (statusCode == StatusCodes.TOO_MANY_QUERIES) {
        answer = "Too Many Queries";
    } else if (statusCode == StatusCodes.UNAVAILABLE_ADDRESS) {
        answer = "Unavailable Address";
    } else if (statusCode == StatusCodes.UNKNOWN_ADDRESS) {
        answer = "Unknown Address";
    } else if (statusCode == StatusCodes.UNKNOWN_DIRECTIONS) {
        answer = "Unknown Directions";
    }//from ww w  .  ja v a2s  .  c o  m
    return answer;
}