Greasy Fork is available in English.

JC2Map Zoom Further

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

// ==UserScript==
// @name JC2Map Zoom Further
// @description Allows zooming in much further on the Just Cause 2 map on jc2map.info
// @namespace https://jacobbundgaard.dk
// @version 1.0
// @match http://jc2map.info/
// @grant none
// ==/UserScript==

(function() {
  window.map.options.maxZoom = 10;
  window.map._layers[21].options.maxNativeZoom = 5;
})();