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

org.wicketstuff.gmap.geocoder.pojos.NortheastSoutwestInfo Maven / Gradle / Ivy

There is a newer version: 10.3.0
Show newest version
/*
 *
 * ==============================================================================
 * 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 org.wicketstuff.gmap.geocoder.pojos;

import org.wicketstuff.gmap.api.GLatLng;


/**
 * POJO for a google geocoder JSON Object viewport and bounds
* Contains the recommended viewport for displaying the returned result, specified as two * latitude,longitude values defining the southwest and northeast corner of the viewport bounding * box. Generally the viewport is used to frame a result when displaying it to a user. * *

* See also: * Google Geocoder JSONResult Doc
* * Note:
* The most documentation in this class a have been adopted by Google documentation.
* Say thank you to Google! *

* * @author Mathias Born - Contact: www.mathiasborn.de */ public class NortheastSoutwestInfo { private GLatLng northeast; private GLatLng southwest; /** * @return the northeast */ public GLatLng getNortheast() { return northeast; } /** * @param northeast * the northeast to set */ public void setNortheast(GLatLng northeast) { this.northeast = northeast; } /** * @return the southwest */ public GLatLng getSouthwest() { return southwest; } /** * @param southwest * the southwest to set */ public void setSouthwest(GLatLng southwest) { this.southwest = southwest; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy