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});

发表回复

登录(不可用)以发表回复。

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址