For years, Google Maps has been a go-to tool for millions worldwide, seamlessly integrated into search results for instant access to directions, locations, and more. But if you’ve noticed something missing recently, you’re not imagining things. Due to European Union regulations, Google has been forced to remove its Maps functionality from its search results, marking a significant shift in how we interact with the tech giant’s ecosystem.

  • tal
    link
    fedilink
    English
    arrow-up
    28
    arrow-down
    1
    ·
    edit-2
    2 days ago

    For users, this tight integration was incredibly convenient.

    In Firefox, I have had any search starting with “gm” set up to do a Google Maps search. So “gm Omaha” will go to Omaha.

    That is, I create a bookmark that’s aimed at:

    https://maps.google.com/maps?q=%25s
    

    and then in the Bookmark Manager, set the keyword to “gm”.

    Kagi – which uses bang prefixes to do searches on external sites – appears to have done the same thing on the service side with “!gm”. So “!gm Omaha”. (They normally have their own, OpenStreetMap-based map thing, but if you want to do Google Maps, that’ll do it.)

    EDIT: For some reason, the Lemmy Web UI seems determined to convert “%s” to “%25s” in the URL above, and I can’t seem to find an escape sequence that avoids that. It’s intended to just be “%s”.

    • taladar@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      9
      ·
      2 days ago

      %25 is the URL encoding for 0x25 (or 37 decimal), the ASCII code for the percent sign. Basically it seems to recognize that it is a URL and then URL-encode characters that are not allowed in URLs

      • tal
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        1
        ·
        edit-2
        2 days ago

        Probably it should only do so if the link is actually being hyperlinked which doesn’t happen for blockquoted text, so I guess it’s probably a Lemmy bug.