HERE map tile api with Leaflet,如何获取并显示正确的版权信息?

HERE map tile api with Leaflet, how to get and display the correct copyright information?

在Leaflet中使用HERE地图块api,如何获取并显示正确的版权信息?

来源。 https://developer.here.com/rest-apis/documentation/enterprise-map-tile/topics/resource-copyright.html

您需要查询您正在使用的同库url的版权资源。好的。但是如何将查询回复中的 json 个边界框(全部)与使用的地图图块匹配,并在用户导航和缩放地图时更新版权信息?

我需要 javascript 个代码示例,HERE 的主页提供 none。

从未使用过 Leaflet,但从他们的文档看来您正在寻找 LatLngBounds

将版权 JSON 响应中的所有边界框转换为 LatLngBounds 并存储它们(最好以某种方式关联版权字符串)。然后你可以要求 L.map(...).getBounds() whenever zoomend or moveend fires and call intersect on all the copyright bounds which are valid at the current zoom level (see the JSON response, some copyright are only valid from e.g. zoom 9 - 20). The ones that do intersect 属于版权。

抱歉,我没有代码示例,但您应该可以从中算出。