Android Open Source - reversegeo Geometry






From Project

Back to project page reversegeo.

License

The source code is released under:

MIT License

If you think the Android project reversegeo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.zwenexsys.reverse.models;
// w w  w  .  j  a  v a  2  s .  co  m
import android.location.Location;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

/**
 * Created by Ye Lin Aung on 14/11/02.
 */
public class Geometry {
  @Expose
  private Bounds bounds;
  @Expose
  private Location location;
  @SerializedName("location_type") @Expose
  private String locationType;
  @Expose
  private Viewport viewport;


  /**
   * @return The bounds
   */
  public Bounds getBounds() {
    return bounds;
  }

  /**
   * @param bounds The bounds
   */
  public void setBounds(Bounds bounds) {
    this.bounds = bounds;
  }

  /**
   * @return The location
   */
  public Location getLocation() {
    return location;
  }

  /**
   * @param location The location
   */
  public void setLocation(Location location) {
    this.location = location;
  }

  /**
   * @return The locationType
   */
  public String getLocationType() {
    return locationType;
  }

  /**
   * @param locationType The location_type
   */
  public void setLocationType(String locationType) {
    this.locationType = locationType;
  }

  /**
   *
   * @return
   * The viewport
   */
  public Viewport getViewport() {
    return viewport;
  }

  /**
   *
   * @param viewport
   * The viewport
   */
  public void setViewport(Viewport viewport) {
    this.viewport = viewport;
  }

}




Java Source Code List

com.yelinaung.reverse.ApplicationTest.java
com.zwenexsys.reverse.AsyncMapService.java
com.zwenexsys.reverse.BaseService.java
com.zwenexsys.reverse.ReverseGeo.java
com.zwenexsys.reverse.SyncMapService.java
com.zwenexsys.reverse.models.AddressComponent.java
com.zwenexsys.reverse.models.Bounds.java
com.zwenexsys.reverse.models.Geometry.java
com.zwenexsys.reverse.models.Location.java
com.zwenexsys.reverse.models.Maps.java
com.zwenexsys.reverse.models.Northeast.java
com.zwenexsys.reverse.models.Northeast_.java
com.zwenexsys.reverse.models.Result.java
com.zwenexsys.reverse.models.Southwest.java
com.zwenexsys.reverse.models.Southwest_.java
com.zwenexsys.reverse.models.Viewport.java
com.zwenexsys.reversegeo.ApplicationTest.java
com.zwenexsys.reversegeo.sample.MainActivity.java