Skip to content

Instantly share code, notes, and snippets.

@ParkSangGwon
Created April 25, 2016 23:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ParkSangGwon/07691756fd1777994894a4434d136a6a to your computer and use it in GitHub Desktop.
Save ParkSangGwon/07691756fd1777994894a4434d136a6a to your computer and use it in GitHub Desktop.
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