Automatic zoom to a specific province on page load

Happy Sunday Kerry. This one was a bit tricky, but I think I was able to come up with a solution using the Highcharts APIs

Under custom code, I experimented with mapzoom and center attributes like this:

Here’s the code I used:

Highcharts.merge(true, options, {
   
    mapView: {
            center: [6000, 2000],
            zoom: -2.5
        },
});

Hope this helps

Best regards,
Havard

1 Like