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或关注我们的公众号极客氢云获取最新地址