我正在使用cordova-plugin-camera-with-exif并在config.xml文件中设置权限
<preference name="CameraUsesGeolocation" value="true"/>
和
<plugin name="cordova-plugin-camera-with-exif" spec="^1.2.5">
<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
<string>need location access to find things nearby</string>
</edit-config>
<variable name="ANDROID_SUPPORT_V4_VERSION" value="27.+"/>
<variable name="CAMERA_USAGE_DESCRIPTION" value="Some text"/>
</plugin>
当我拍照时,它没有地理位置信息,并且所有地理位置字段均为NULL。
谢谢。