Google maps...from google search...not working?

Discussion in 'Lounge' started by stavt, Apr 30, 2024.

  1. stavt

    stavt Guest

    In the past i was able to write a location in google search, then search...and then clicking on the picture that was showing the google map could take me into the google map and navigate

    something happened and this is not occuring now? clicking on the map from google search nothing happens now

    instead i have to enter www.google.com/maps and search in there
     
  2.  
  3. Margaret

    Margaret Rock Star

    Joined:
    Dec 9, 2023
    Messages:
    833
    Likes Received:
    317
    Location:
    Porn Star
    Best Answer
    Yes, they changed something.
    It is kinda turned off.
    Everything is "better and better" in the internet.
    Similar like quality of the products. Years ago fridge, washing machine, microwave or even bulb was very good quality and worked for years, now few months and it goes to trash.
    Same with the internet. Years ago you can quickly find what you was looking for. Now profiling shit and positioning, recmonedations for money and what you are looking for is on page 29.
    Everything is for fucking money, they will squize you from the last cent or take from you all your data which is even more valuable than your money.
    There will be nothing weird if after few years they will make Google Premium and Google Maps will be paid premium option.
     
  4. Hazen

    Hazen Rock Star

    Joined:
    Dec 28, 2016
    Messages:
    713
    Likes Received:
    426
    I noticed the same issue. I don't know whether they were obliged by a court to unlink their Maps service from the standard web search engine to reduce the unfair advantage over other maps / navigations providers? That's the only explanation that comes to my mind.
     
  5. Hazen

    Hazen Rock Star

    Joined:
    Dec 28, 2016
    Messages:
    713
    Likes Received:
    426
  6. xorome

    xorome Audiosexual

    Joined:
    Sep 28, 2021
    Messages:
    1,202
    Likes Received:
    879
    Ah, interesting. Wrote a quick hack to add a link to Maps. Works for me on English Google. It'll break with the next layout change. Needs ViolentMonkey, TamperMonkey or GreaseMonkey.

    upload_2024-4-30_18-14-21.png

    Code:
    // ==UserScript==
    // @name           Google Map Link
    // @version        1.0
    // @match          *://*.google.*/*
    // ==/UserScript==
    observer = new MutationObserver(async (mutations) => {
        mutations.every(() => {
            if (document.querySelector("div.crJ18e") && document.querySelector("textarea")) {
                observer.disconnect();
    
                map_node = document.createElement("div");
                map_node.innerHTML = `<a href="/maps/search/${encodeURIComponent(
                    document.querySelector("textarea").value,
                )}" class="nPDzT T3FoJb" role="link"><div class="YmvwI">Maps</div></a>`;
    
                bar = document.querySelector("div.crJ18e");
                bar.insertAdjacentElement("afterbegin", map_node);
            }
        });
    });
    
    observer.observe(document, {
        childList: true,
        subtree: true,
    });
    
     
Loading...
Loading...