Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2275 → Rev 2276

/trunk/src/org/tela_botanica/client/vues/observation/FormulaireSaisieObservationVue.java
1344,15 → 1344,16
}
}
 
// Se déclenche au retour de la "localisation sur la carte"
private void rafraichirCommuneEtCoord(EntiteGeographiqueObservation infosCom) {
 
rafraichirCommune(infosCom);
if(infosCom.getLat() != null && !infosCom.getLat().equals("")) {
latitude.setValue(infosCom.getLat());
latitude.setValue(Util.tronquerNombrePourAffichage("" + infosCom.getLat(), 5));
}
 
if(infosCom.getLon() != null && !infosCom.getLon().equals("")) {
longitude.setValue(infosCom.getLon());
longitude.setValue(Util.tronquerNombrePourAffichage("" + infosCom.getLon(), 5));
}
 
latModifiee = true;