I have 2 questions regarding highcharts (using high maps also) and cross-domain policy issues. My site runs over https.
The Rails 4 installation of highcharts for rails seems to be out of date - the js files don't work when trying to implement maps. I had to add the links directly to my header - is this a recognised probelm?
This leads onto the second problem. The files aren't working on my production site because they are http (and not https). How does one circumvent this problem. I added "s" to the source url and this worked for some but not for
$.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=world-population-density.json&callback=?', function (geojson) {..... });
Which is necessary for my map. The line charts work fine. Its just the incoporation of maps which breaks.
Has anyone else had this problem and if so whats the fix?