Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 19, 2019 02:24
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 parzibyte/90cdecc7cdc27ed35bbe018d4fb2292f to your computer and use it in GitHub Desktop.
Save parzibyte/90cdecc7cdc27ed35bbe018d4fb2292f to your computer and use it in GitHub Desktop.
public class LugarParaVisitar {
public static String TIPO_PUBLICO = "publico";
public static String TIPO_PRIVADO = "privado";
private String direccion;
private LatLng cordenadas;
private String tipo;
public LugarParaVisitar() {
}
public LugarParaVisitar(String direccion, LatLng cordenadas, String tipo) {
this.direccion = direccion;
this.cordenadas = cordenadas;
this.tipo = tipo;
}
public String getDireccion() {
return direccion;
}
public void setDireccion(String direccion) {
this.direccion = direccion;
}
public LatLng getCordenadas() {
return cordenadas;
}
public void setCordenadas(LatLng cordenadas) {
this.cordenadas = cordenadas;
}
public String getTipo() {
return tipo;
}
public void setTipo(String tipo) {
this.tipo = tipo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment