Created
April 25, 2016 23:56
-
-
Save ParkSangGwon/07691756fd1777994894a4434d136a6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MarkerItem { | |
double lat; | |
double lon; | |
int price; | |
public MarkerItem(double lat, double lon, int price) { | |
this.lat = lat; | |
this.lon = lon; | |
this.price = price; | |
} | |
public double getLat() { | |
return lat; | |
} | |
public void setLat(double lat) { | |
this.lat = lat; | |
} | |
public double getLon() { | |
return lon; | |
} | |
public void setLon(double lon) { | |
this.lon = lon; | |
} | |
public int getPrice() { | |
return price; | |
} | |
public void setPrice(int price) { | |
this.price = price; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment