removed debug output on location update...it is too much spam

This commit is contained in:
Philipp Schaefer 2013-04-29 14:12:04 +02:00
parent 94f4f96e80
commit c8085931eb

View File

@ -251,8 +251,6 @@ public class IITC_Mobile extends Activity {
// update the user location marker on the map // update the user location marker on the map
public void drawMarker(Location loc) { public void drawMarker(Location loc) {
Log.d("iitcm", "update location..." + loc.toString());
iitc_view.loadUrl("javascript: window.console.log('" + loc.toString() + "');");
// throw away all positions with accuracy > 100 meters // throw away all positions with accuracy > 100 meters
// should avoid gps glitches // should avoid gps glitches
if (loc.getAccuracy() < 100) { if (loc.getAccuracy() < 100) {