public final class

LatLng

extends Object
implements Parcelable
java.lang.Object
   ↳ com.google.android.gms.maps.model.LatLng

Class Overview

An immutable class representing a pair of latitude and longitude coordinates, stored as degrees.

Summary

Constants
String NULL
[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final LatLngCreator CREATOR
public final double latitude Latitude, in degrees.
public final double longitude Longitude, in degrees.
Public Constructors
LatLng(double latitude, double longitude)
Constructs a LatLng with the given latitude and longitude, measured in degrees.
Public Methods
int describeContents()
boolean equals(Object o)
Tests if this LatLng is equal to another.
int hashCode()
String toString()
void writeToParcel(Parcel out, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Constants

public static final String NULL

Constant Value: "SAFE_PARCELABLE_NULL_STRING"

Fields

public static final LatLngCreator CREATOR

public final double latitude

Latitude, in degrees. This value is in the range [-90, 90].

public final double longitude

Longitude, in degrees. This value is in the range [-180, 180).

Public Constructors

public LatLng (double latitude, double longitude)

Constructs a LatLng with the given latitude and longitude, measured in degrees.

Parameters
latitude The point's latitude. This will be clamped to between -90 degrees and +90 degrees inclusive.
longitude The point's longitude. This will be normalized to be within -180 degrees inclusive and +180 degrees exclusive.

Public Methods

public int describeContents ()

public boolean equals (Object o)

Tests if this LatLng is equal to another.

Two points are considered equal if and only if their latitudes are bitwise equal and their longitudes are bitwise equal. This means that two LatLngs that are very near, in terms of geometric distance, might not be considered .equal().

public int hashCode ()

public String toString ()

public void writeToParcel (Parcel out, int flags)