com.google.maps.GeocodingApiRequest Maven / Gradle / Ivy
Show all versions of google-maps-services Show documentation
/*
* Copyright 2016 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 static com.google.maps.internal.StringJoin.join;
import com.google.maps.internal.ApiConfig;
import com.google.maps.model.AddressType;
import com.google.maps.model.ComponentFilter;
import com.google.maps.model.GeocodingResult;
import com.google.maps.model.LatLng;
import com.google.maps.model.LocationType;
/** A request for the Geocoding API. */
public class GeocodingApiRequest
extends PendingResultBase {
private static final ApiConfig API_CONFIG = new ApiConfig("/maps/api/geocode/json");
public GeocodingApiRequest(GeoApiContext context) {
super(context, API_CONFIG, GeocodingApi.Response.class);
}
@Override
protected void validateRequest() {
// Must not have both address and latlng.
if (params().containsKey("latlng")
&& params().containsKey("address")
&& params().containsKey("place_id")) {
throw new IllegalArgumentException(
"Request must contain only one of 'address', 'latlng' or 'place_id'.");
}
// Must contain at least one of place_id, address, latlng, and components;
if (!params().containsKey("latlng")
&& !params().containsKey("address")
&& !params().containsKey("components")
&& !params().containsKey("place_id")) {
throw new IllegalArgumentException(
"Request must contain at least one of 'address', 'latlng', 'place_id' and 'components'.");
}
}
/**
* Creates a forward geocode for {@code address}.
*
* @param address The address to geocode.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest address(String address) {
return param("address", address);
}
/**
* Creates a forward geocode for {@code placeId}.
*
* @param placeId The Place ID to geocode.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest place(String placeId) {
return param("place_id", placeId);
}
/**
* Creates a reverse geocode for {@code latlng}.
*
* @param latlng The location to reverse geocode.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest latlng(LatLng latlng) {
return param("latlng", latlng);
}
/**
* Sets the bounding box of the viewport within which to bias geocode results more prominently.
* This parameter will only influence, not fully restrict, results from the geocoder.
*
* For more information see
* Viewport Biasing.
*
* @param southWestBound The South West bound of the bounding box.
* @param northEastBound The North East bound of the bounding box.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest bounds(LatLng southWestBound, LatLng northEastBound) {
return param("bounds", join('|', southWestBound, northEastBound));
}
/**
* Sets the region code, specified as a ccTLD ("top-level domain") two-character value. This
* parameter will only influence, not fully restrict, results from the geocoder.
*
*
For more information see Region
* Biasing.
*
* @param region The region code to influence results.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest region(String region) {
return param("region", region);
}
/**
* Sets the component filters. Each component filter consists of a component:value pair and will
* fully restrict the results from the geocoder.
*
*
For more information see
* Component Filtering.
*
* @param filters Component filters to apply to the request.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest components(ComponentFilter... filters) {
return param("components", join('|', filters));
}
/**
* Sets the result type. Specifying a type will restrict the results to this type. If multiple
* types are specified, the API will return all addresses that match any of the types.
*
* @param resultTypes The result types to restrict to.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest resultType(AddressType... resultTypes) {
return param("result_type", join('|', resultTypes));
}
/**
* Sets the location type. Specifying a type will restrict the results to this type. If multiple
* types are specified, the API will return all addresses that match any of the types.
*
* @param locationTypes The location types to restrict to.
* @return Returns this {@code GeocodingApiRequest} for call chaining.
*/
public GeocodingApiRequest locationType(LocationType... locationTypes) {
return param("location_type", join('|', locationTypes));
}
}