Fix crash permissions
This commit is contained in:
parent
4c18ecf142
commit
62a1b20452
1 changed files with 2 additions and 2 deletions
|
@ -663,8 +663,8 @@ public class MainActivity extends Activity {
|
||||||
public void onLongPress(MotionEvent e) {
|
public void onLongPress(MotionEvent e) {
|
||||||
PointI point31 = new PointI();
|
PointI point31 = new PointI();
|
||||||
mapView.getLocationFromScreenPoint(new PointI((int) e.getX(), (int) e.getY()), point31);
|
mapView.getLocationFromScreenPoint(new PointI((int) e.getX(), (int) e.getY()), point31);
|
||||||
geocode(point31);
|
// geocode(point31);
|
||||||
Toast.makeText(MainActivity.this, "Geocoding...", Toast.LENGTH_SHORT).show();
|
//Toast.makeText(MainActivity.this, "Geocoding...", Toast.LENGTH_SHORT).show();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue