如何从 Android 中的照片中提取地理位置信息?
我对 android 相当陌生,我正在创建一个应用程序,它使用相机意图拍照并将其与一些其他信息一起存储到数据库中。我的麻烦是我需要从照片中获取纬度和经度并将其存储到数据库中。我已经进行了非常彻底的搜索,似乎无法找到如何从照片中提取位置信息。任何帮助将不胜感激。
提前致谢
I am fairly new to android and I am creating an app that uses the camera intent to take a photo and stores it into a database along with some other info. my trouble is that I need to get the latitude and longitude from that photo and store it into the database as well. I have searched very thoroughly and can not seem to find out how to extract the location information from a photo. any help will be greatly appreciated.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个
ExifInterface
从文件名然后你可以调用getLatLong()
获取坐标。Create an
ExifInterface
from the filename and then you can callgetLatLong()
to get the coordinates.