如何从Windows Phone中使用默认摄像头捕获的图像中获取地理位置信息?这些数据是在捕获图像时记录的,还是我必须自己实现的?
答案 0 :(得分:2)
与大多数手机摄像头一样,Windows Phone允许用户选择拍摄照片时是否记录纬度和经度(地理定位)。据推测,这是出于隐私原因。请参阅此处启用/禁用的详细信息:http://www.windowsphone.com/en-us/how-to/wp7/pictures/add-location-info-to-my-pictures
Start > App list > Settings
Then: Applications > Pictures+camera.
Then: Turn on Include location info in pictures you take.
此数据在设备保存图像时作为EXIF属性存储在图像中 - 您不需要自己执行此操作(但是,如果您需要,可能需要以编程方式设置属性以执行此操作)重写一个捕获图像的程序)。有关如何访问该帖子的示例,请参阅此帖子:Get EXIF tags in Windows Phone 7和How to Fetch the Geotag details of the captured image or stored image in Windows phone 8
感兴趣的数据点是:GpsLatitude
和GpsLongitude
。