Android Question WebView map vs actual position

Tomas Petrus

Active Member
Licensed User
Longtime User
Hi,

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
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top