Hi,
I have app with google map in webview and I need to allow actual position for that webview. Is there somethink like this?
Thanks for answer
I have app with google map in webview and I need to allow actual position for that webview. Is there somethink like this?
B4X:
mWebView.setWebChromeClient(new WebChromeClient()
{
public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback)
{
callback.invoke(origin, true, false);
}
});
Thanks for answer