android 如何获取mapview上位置的温度
全部 android 对我来说是新的,所以我只是想知道 是否可以获取地图视图上特定位置的温度?
在我的应用程序中,我想在用户点击地图时显示位置的温度。 所以它可能会发生然后请帮助..
all
android is new for me , so i just want to know that
is it possible to get temperature of particular location on mapview ?
In my application i want to show temperature of location when user tap on map.
so it can happen then please help..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了找到温度,请从雅虎等天气 API 获取信息,并将其与设备的位置相匹配。
In order to find the temp, fetch info from a weather API like Yahoo's and match it to the device's location.
是的,这是可能的:
当用户点击地图时,您可以获得该点的位置:在android中点击地图获取坐标
查询在线天气服务以获取给定位置的温度:例如 Yahoo Weather
在地图上显示显示温度的弹出窗口:在 MapView 中的地图标记上方显示弹出窗口
Yes it's possible:
When user taps on map you can get the location of the point: Get coordinates on tapping map in android
Query an online Weather service to get temperatures for given location: for example Yahoo Weather
Show popup on map that tells the temperature: Show popup above map marker in MapView
谷歌地图 API 下没有默认的 API。您需要搜索任何单独的天气 API,它们提供基于位置的温度数据。
There is no by default API for this under google maps API. You need to search for any separate weather API's which provide temperature data based on locations.