JC2Map Zoom Further

Allows zooming in much further on the Just Cause 2 map on jc2map.info

  1. // ==UserScript==
  2. // @name JC2Map Zoom Further
  3. // @description Allows zooming in much further on the Just Cause 2 map on jc2map.info
  4. // @namespace https://jacobbundgaard.dk
  5. // @version 1.0
  6. // @match http://jc2map.info/
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. window.map.options.maxZoom = 10;
  12. window.map._layers[21].options.maxNativeZoom = 5;
  13. })();