Android Open Source - kitty-compass Place






From Project

Back to project page kitty-compass.

License

The source code is released under:

Apache License

If you think the Android project kitty-compass 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.google.glassware.model;
//from   ww w.jav a 2s .co m
/**
 * This class represents a point of interest that has geographical coordinates (latitude and
 * longitude) and a name that is displayed to the user.
 */
public class Place {

  private final double mLatitude;
  private final double mLongitude;
  private final String mName;

  /**
   * Initializes a new place with the specified coordinates and name.
   *
   * @param latitude  the latitude of the place
   * @param longitude the longitude of the place
   * @param name      the name of the place
   */
  public Place(double latitude, double longitude, String name) {
    mLatitude = latitude;
    mLongitude = longitude;
    mName = name;
  }

  /**
   * Gets the latitude of the place.
   *
   * @return the latitude of the place
   */
  public double getLatitude() {
    return mLatitude;
  }

  /**
   * Gets the longitude of the place.
   *
   * @return the longitude of the place
   */
  public double getLongitude() {
    return mLongitude;
  }

  /**
   * Gets the name of the place.
   *
   * @return the name of the place
   */
  public String getName() {
    return mName;
  }
}




Java Source Code List

com.google.android.glass.sample.kittycompass.CompassMenuActivity.java
com.google.android.glass.sample.kittycompass.CompassRenderer.java
com.google.android.glass.sample.kittycompass.CompassService.java
com.google.android.glass.sample.kittycompass.CompassView.java
com.google.android.glass.sample.kittycompass.OrientationManager.java
com.google.android.glass.sample.kittycompass.StartCompassActivity.java
com.google.android.glass.sample.kittycompass.model.Landmarks.java
com.google.android.glass.sample.kittycompass.model.Place.java
com.google.android.glass.sample.kittycompass.util.MathUtils.java
com.google.glassware.AttachmentProxyServlet.java
com.google.glassware.AuthFilter.java
com.google.glassware.AuthServlet.java
com.google.glassware.AuthUtil.java
com.google.glassware.ListableMemoryCredentialStore.java
com.google.glassware.MainServlet.java
com.google.glassware.MirrorClient.java
com.google.glassware.NewUserBootstrapper.java
com.google.glassware.NotifyServlet.java
com.google.glassware.ReauthFilter.java
com.google.glassware.WebUtil.java
com.google.glassware.model.Landmarks.java
com.google.glassware.model.Place.java
com.google.glassware.util.MathUtils.java