• I have input the api key, but Google Maps doesn’t load on either the back or front end.
    The message is: Oops! Something went wrong.
    This page didn’t load Google Maps correctly. See the JavaScript console for technical details.

    I have checked the following
    1. the map key is not restricted
    2. deactivateing all plugins does not solve the problem
    3. I have made sure that the <?php wp_footer(); ?> is in the footer.php file

    I used the F12 key of the keyboard, and found this error. Why
    status code 404, net::ERR_UNKNOWN_URL_SCHEME

    Issues detected. The new Issues tab displays information about deprecations, breaking changes and other potential problems.Go to IssuesLearn more
    https://www.googletagmanager.com/gtm.js?id=GTM-5VBLVVK:1 Failed to load resource: the server responded with a status of 404 ()
    js?language=nb&key=AIzaSyB0R_Jh120VbO0djOvK19SyVP97dNUcdQM&callback=__async_req_1__:69 Google Maps JavaScript API error: ApiNotActivatedMapError
    https://developers.google.com/maps/documentation/javascript/error-messages#api-not-activated-map-error
    _.ne @ js?language=nb&key=AIzaSyB0R_Jh120VbO0djOvK19SyVP97dNUcdQM&callback=__async_req_1__:69
    DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/iframe_handler.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
    DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/content.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
    DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/iframe_handler.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
    DevTools failed to load SourceMap: Could not load content for chrome-extension://klekeajafkkpokaofllcadenjdckhinm/sourceMap/content.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME

    • This topic was modified 4 years, 1 month ago by toguny.
    • This topic was modified 4 years, 1 month ago by toguny.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • This error is appeared because the WebView can’t recognize the URL Scheme,for example, the WebView will usually recognize only http and https, anything other than these. So WebView cannot parse it to right place, we should use intent to redirect the url. for example – intent://,market://,app://,mail:// etc will not be recognized by webview unless we add a handler to handle these url scheme or by disabling these schemes and only load http and https schemes.

    This error has no any specific solution till now. Android user and PC user all are facing this error which needs to be sought out. There’s a long-standing bug in Chromium regarding how links without protocols are handled. It occasionally is patched, but seems to keep resurfacing. In some cases, prefixing your links with https:// (or https://) should resolve the issue for you.

    Also, in some cases, try to add target=”_blank” in your URL Scheme/Code. for example:

    <a href="mailto:[email protected]" target="_blank" rel="noopener">Link Text</a>

    • This reply was modified 3 years, 8 months ago by carlosridg.
Viewing 1 replies (of 1 total)
  • The topic ‘Google Maps not Loading’ is closed to new replies.