Apple Maps on the web launches in beta
from andrew@andrew.masto.host to apple_enthusiast@lemmy.world on 25 Jul 2024 06:34
https://andrew.masto.host/users/andrew/statuses/112845735573914718

Apple Maps on the web launches in beta

https://www.apple.com/newsroom/2024/07/apple-maps-on-the-web-launches-in-beta/

@apple_enthusiast

#apple_enthusiast

threaded - newest

Link@rentadrunk.org on 25 Jul 2024 07:12 next collapse

I thought this was already a thing. DuckDuckGo has been using Apple Maps for a while

EtzBetz@feddit.org on 28 Jul 2024 12:08 collapse

I am confused as well…

kate@lemmy.uhhoh.com on 25 Jul 2024 07:22 next collapse

i opened it in safari for iphone and it told me my browser isn’t supported 😅

superb@lemmy.blahaj.zone on 25 Jul 2024 07:51 next collapse

I guess I understand wanting to focus on other platforms since every device with safari also has a maps app, but the website is supposed to work on an iPad?

They should’ve at least put a redirect to the native version instead of the browser unsupported message.

UTJD16@lemmy.world on 25 Jul 2024 08:09 collapse

They should’ve at least put a redirect to the native version instead of the browser unsupported message.

They did both.

superb@lemmy.blahaj.zone on 25 Jul 2024 15:42 collapse

Oops, didn’t work for me I guess

Sorse@discuss.tchncs.de on 25 Jul 2024 08:54 collapse

Changing the scaling makes it work

50% scaling, works fine

<img alt="" src="https://discuss.tchncs.de/pictrs/image/ac206684-b70a-47b7-a5a5-aabcf908c01e.png">

100% scaling, doesn’t work

<img alt="" src="https://discuss.tchncs.de/pictrs/image/be984947-9fec-4eae-accb-459a8b3bc5e6.png">

2xsaiko@discuss.tchncs.de on 25 Jul 2024 13:50 collapse

I tried to get it to work in Firefox by changing the user agent but it only works if you make the window small enough (???). Even trying to hack patch their stupid redirect away with the userscript below leaves the map empty if you resize above a certain size so there’s probably actually something they’re doing that doesn’t work.

Userscript

javascript // ==UserScript== // @name New script apple.com // @namespace Violentmonkey Scripts // @match https://beta.maps.apple.com/* // @grant none // @version 1.0 // @author - // @description 2024-07-25, 15:04:37 // ==/UserScript== (() => { const realSetTimeout = window.setTimeout; window.setTimeout = (f, t) => { const err = Error(); if (err.stack.includes(“mapNodeDidFail”)) { console.log(f, t, err); return; } realSetTimeout(f, t); }; })();

EDIT: this is probably the same issue as the scaling one on the iPhone