Try this:
add_action( 'ap_after_new_question', 'my_tag_location_on_new_question' );
function my_tag_location_on_new_question($question_id){
// Replace YOUR LOCATION HERE with your actual location.
add_post_meta($question_id, '__question_location', 'YOUR LOCATION HERE');
}