In fact you are not defining imgFile or location in onActivityResult().
Also you need to import Location:
import android.location.Location;
And need to get the location from a LocationManager obtained from:
Context.getSystemService(Context.LOCATION_SERVICE);