It�??s not possible to do this via the configuration file. One way to make this work is to prepare the center map point input, get the GP input parameter and update it before the request object is created and sent (before the runGPIfRequiredParamsComplete function)://assuming the input format is: x,y
var centerMapPointInput:String = map.extent.center.x + ',' + map.extent.center.y;
var driveTimesParam:StringParameter = gpParamHandler.findInputParamByName("Drive_Times") as StringParameter;
driveTimesParam.defaultValue = centerMapPointInput;
The parameter would also need to be hidden (in the config) to avoid overriding the center point input.<param name="Drive_Times"
label="Drive times"
required="false"
type="string"
visible="false"/>