I know how to call js-functions with the Android.Webkit as long as I dont have to handle a return-value:
Control.EvaluateJavascript("removeAllPins()", null);
But I dont know how to call a function that returns a function? The function takes an object of IValueCallback as a paramter but I can't create an instance of it because it's an interface and not a class.
How do I get the result of a js-function thats called in Android with EvaluateJavascript?