Back to project page reversegeo.
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.
package com.zwenexsys.reverse.models; // w w w . j a va 2 s.c o m import com.google.gson.annotations.Expose; /** * Created by Ye Lin Aung on 14/11/02. */ public class Location { @Expose private Double lat; @Expose private Double lng; /** * @return The lat */ public Double getLat() { return lat; } /** * @param lat The lat */ public void setLat(Double lat) { this.lat = lat; } /** * @return The lng */ public Double getLng() { return lng; } /** * @param lng The lng */ public void setLng(Double lng) { this.lng = lng; } }