Home | History | Annotate | Download | only in camera

Lines Matching full:loc

633     public static void setGpsParameters(Parameters parameters, Location loc) {
641 if (loc != null) {
642 double lat = loc.getLatitude();
643 double lon = loc.getLongitude();
650 parameters.setGpsProcessingMethod(loc.getProvider().toUpperCase());
651 if (loc.hasAltitude()) {
652 parameters.setGpsAltitude(loc.getAltitude());
659 if (loc.getTime() != 0) {
662 long utcTimeSeconds = loc.getTime() / 1000;
666 loc = null;