Leaflet Circle radius changing dependant on y/lng coords
I am using mapbox/leaflet to display a picture of a human body rather than a regular map. I am using leaflet draw and I need to be able to create a circle and move it around while maintaining its radius. However, when I move it towards the bottom of the map/screen, the size increases exponentialy. I want it to stay the same size. I assume it's something to do with projection or CRS but I'm not sure what to do to stop it. My code is : var mapMinZoom = 0; var mapMaxZoom = 4; var map = L.map('map', { maxZoom: mapMaxZoom, minZoom: mapMinZoom, crs: L.CRS.Simple, noWrap: true, continuousWorld: true