Greasy Fork is available in English.

Google Maps Satellite View Auto-Toggle

Automatically toggle to satellite view in Google Maps

< Google Maps Satellite View Auto-Toggle 피드백

리뷰: 좋음 - 잘 동작함

§
작성: 2024-06-15
수정: 2024-06-15

Hello, Just so happens that I required the same script today Ive gotten help with a similar task years ago so I know there is a better way to make this. As I made mine the same way you have with a timer years ago.

And I got some help in the forums so that the code 'listens' instead of waiting for a timer to switch view.

So if youd like to update your code, here it is:

const mo = new MutationObserver(() => { const el = document.querySelector('#minimap button[jsaction*="minimap.main"]'); if (el) { el.click(); mo.disconnect(); } }); mo.observe(document.body, {childList: true, subtree: true});

Take care

§
작성: 2024-06-15
수정: 2024-06-15



const mo = new MutationObserver(() => {
const el = document.querySelector('#minimap button[jsaction*="minimap.main"]');
if (el) {
el.click();
mo.disconnect();
}
});
mo.observe(document.body, {childList: true, subtree: true});

댓글 남기기

댓글을 남기려면 로그인하세요.