Imagine that your predictor is age ranged from 0-100. Your coefficient is 2. You want to compare your coefficients with 1 as a classical logistic function. Your classical function is exp(x)/1+exp(x). You correct as exp(x-50)/1+exp(x-50) to align the turning point on the middle of predictor range.
Then you perform -integrate- function on both of the above conditions in R.
> integrate(function(x){exp(x-50)/(1+exp(x-50))}, 0, 100)
50 with absolute error < 5.6e-13
> integrate(function(x){exp(2*x-50)/(1+exp(2*x-50))}, 0, 100)
75 with absolute error < 8.3e-13
Is comparison of 75 with 50 useful? What is its interpretation?
*** Another way is to perform ROC post estimation. I do not mean it!