对Here Maps Base计划的SSL支持

azz*_*ack 2 ssl https here-api

有没有人知道如何在没有企业订阅的情况下通过HTTPS/SSL获取maptiles?

Jas*_*Fox 6

只需升级您的代码即可使用3.0版本的Maps API for JavaScript,它会向所有用户提供https.

初始化H.service.Platform对象时,只需设置useHTTPStrue

var platform = new H.service.Platform({
      'app_id': '<your app id>',
      'app_code': '<your app code>',
      'useHTTPS': true
    });
Run Code Online (Sandbox Code Playgroud)