+Huck1974 Posted June 11, 2021 Share Posted June 11, 2021 Hi there, I like to see the map on geocaching.com as following: - Browse geocaches - OpenStreetMap Defalult Where can I set it as it starts like this as default ? And if i can't set it, why it is impossible to set this defaults ? Huck1974 2 Quote Link to comment
+Viajero Perdido Posted June 11, 2021 Share Posted June 11, 2021 (edited) Dream on. Map changes here are extremely rare. It's as if nobody wants to touch that code... Edited June 11, 2021 by Viajero Perdido 1 1 Quote Link to comment
+ardila.nl Posted June 12, 2021 Share Posted June 12, 2021 On 6/11/2021 at 6:33 AM, Huck1974 said: - Browse geocaches - OpenStreetMap Defalult https://www.geocaching.com/map/ On the bottom left there is a big green button for selecting map types. Google or Leaflet Isn't that what you are looking for? Quote Link to comment
+Hügh Posted June 12, 2021 Share Posted June 12, 2021 6 minutes ago, ardila.nl said: Isn't that what you are looking for? I think @Huck1974's issue is that the default map tiles are "Geocaching", rather than "OpenStreetMap Default." See the selector on the right side of the map. Quote Link to comment
+Hügh Posted June 12, 2021 Share Posted June 12, 2021 Assuming that you are using the Leaflet-based map, here is a bodged-together UserScript that automatically switches to "OpenStreetMap Default" on page load. // ==UserScript== // @name Geocaching Map Redirect // @namespace http://tampermonkey.net/ // @version 0.1 // @match https://www.geocaching.com/map/* // @grant none // @run-at document-start // ==/UserScript== (function() { var x; const SET_OSM = function() { console.log("Attempting to set OSM..."); const OSM_RADIO_BTN = document.querySelectorAll("form.leaflet-control-layers-list div label input")[1]; if (OSM_RADIO_BTN) { OSM_RADIO_BTN.click(); clearInterval(x); } } x = setInterval(SET_OSM, 500); })(); Quote Link to comment
+Huck1974 Posted June 12, 2021 Author Share Posted June 12, 2021 42 minutes ago, Hügh said: I think @Huck1974's issue is that the default map tiles are "Geocaching", rather than "OpenStreetMap Default." See the selector on the right side of the map. Right, that's what I would like ! I am using the Leaflet-based map, so I will try you script ! And once again, Thank you Hügh ! Quote Link to comment
+Viajero Perdido Posted June 12, 2021 Share Posted June 12, 2021 Curious... Has anybody managed to script-hack the great new CyclOSM map into that list? If I was still bothering to suggest improvements, that would be my number-one. (To see that map albeit without caches, click the never-used OpenStreetMap link on a cache page, tap the layers icon near the top-right corner, and select CyclOSM.) Quote Link to comment
+2Abendsegler Posted June 12, 2021 Share Posted June 12, 2021 14 hours ago, Viajero Perdido said: Has anybody managed to script-hack the great new CyclOSM map into that list? Something like that ... 🤭 On 6/11/2021 at 6:33 AM, Huck1974 said: - Browse geocaches - OpenStreetMap Defalult You can do it also with script GClh. See my signature. 2 1 Quote Link to comment
+Viajero Perdido Posted June 12, 2021 Share Posted June 12, 2021 Cool! Nice touch, pre-setting the example to my home city. And you even kept everybody's favorite, Stamen Toner, in the list too. Quote Link to comment
+Blackbeard Posted January 21, 2022 Share Posted January 21, 2022 This is really annoying. I used to be able to set a default. After the last Maps change or layout change if you will I can no longer set a default. I want mine set to Satellite view from google. I am legally blind and the harsh white really HURTS my eyes. I wish Groundspeak would at least TRY to follow ADA guidelines because I have a true struggle trying to use the website. This is one of the main reasons I only use Cachly and not the Groundspeak App because Cachly has a Dark mode on their App. 😠 1 Quote Link to comment
+leloup79 Posted January 15 Share Posted January 15 On 6/12/2021 at 6:49 AM, Hügh said: Assuming that you are using the Leaflet-based map, here is a bodged-together UserScript that automatically switches to "OpenStreetMap Default" on page load. That is exactly what I was looking for. Thank you so much! Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.