目前,我在这里使用的Maps API仅用于开发目的。现在我想知道,是否有其他天气图标(也许没有颜色/黑白图标)可用?我可以轻松地自己制作一个,但是如果已有的话,我会使用它们。
最好的问候
答案 0 :(得分:1)
此处在常规SDK中未提供任何天气图标。您可以使用在Destination Weather API响应中获得的图标。
https://weather.api.here.com/weather/1.0/report.json
?app_id={YOUR_APP_ID}
&app_code={YOUR_APP_CODE}
&product=observation
&name=Berlin-Tegel
对此的响应将为您提供iconLink属性,该属性提供图像的位置。在https://developer.here.com/documentation/weather/topics/example-weather-observation.html
中了解有关此内容的更多信息否则,您可以尝试Mobile UI SDK。在开发者网站-https://developer.here.com/blog/mobile-ui-sdk-2.0-is-here-with-navigation
中了解有关此内容的更多信息希望这会有所帮助!