I'm using Leaflet and trying to work out how set the initial image center and zoom but can't seem to get this to work. I found these notes in the documentation: https://docs.eegeo.com/eegeo.js/v0.1.728/docs/leaflet/L.Map/
map = L.map('map', {
center: [-203.8, 123.2],
zoom: 10,
crs: L.CRS.Simple
});
I'd like the initial zoom and center to be the lowest point marked on this image: https://jsfiddle.net/brutaldigital/yx3ofrL4/2/
Thanks in advance for any suggestions, and apologies for the basic question (#newbie)