How can I call HERE maps through HTTPS ?
I'm using HTTPS on my server so when I call this:
<script src="http://js.api.here.com/v3/3.0/mapsjs-core.js" type="text/javascript" charset="utf-8"></script>
<script src="http://js.api.here.com/v3/3.0/mapsjs-service.js" type="text/javascript" charset="utf-8"></script>
The browser blocks the request because of "Mixed Content" and therefore no map is shown...
I tried to change "http" to "https" on the script source but I get the same issue cause both javascripts have "http" calls inside their codes.
By the way the backend is written in Grails and the channel is secured using Spring Security Core plugin.