English 中文(简体)
根据关键词(特别是城市或国家)在线动态图像
原标题:Dynamically fetch images online based on a keyword (specifically a city or country)

我正在开发一个处理旅行问题的网络应用程序。 我想能够绘制一个特定地理位置的图像(或多种图像),并向用户展示。

我做了一些搜索,并找到了几种可能的解决办法,不幸的是,我的第一次选择(谷歌图像搜索)被抹去。

最好是,我像一个客户方——GWT图书馆,但如果这不是一种选择,那么 Java图书馆就足够了。

任何建议?

基本目的是为每个城市/国家提供用户希望前往的照片。 如果还有另一个更简单、更简单的方式来完成这项任务,请让我知道(我知道,为图像和在当地保存图像而拆除网络是一种选择,但不仅是非法的,而且效率也非常低,而且容易发生错误,因此不能选择)。

感谢

弗拉基米尔

最佳回答

How about the Google Street View Image API? Simply construct a URL in accordance with the documentation, and the Google Street View Image API returns the corresponding image.

https://developers.google.com/maps/documentation/streetview/

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签