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

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

Introduction

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

Prototype

int UNAVAILABLE_ADDRESS

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

Click Source Link

Document

The geocode for the given address or the route for the given directions query cannot be returned due to legal or contractual reasons.

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";
    }//w ww  . j ava  2  s . c om
    return answer;
}