Add a series of pictures to a feature¶
You can add one or more pictures to a feature. Below you find an example how to proceed.
Creating two tables¶
We will need two tables. One table where the features are stored and one with a list of pictures.
Apiary
id(UUID)geometry- ...
Apiary_pictures
idapiary_id(UUID)path(TEXT)- ...
Relations¶
Create a relation with:
apiaryReferenced layeridReferenced fieldapiary_pictureReferencing layerapiary_idReferencing fieldstrengthComposition
Widgets¶
apiary
Set the default value of the field id to uuid().
There is no need to show it in the form, since it will be filled by QField
and does not contain any human readable information.
Set the relation widget to Many to one relation and add the relation to the form
picture
Set the widget type of the field path to attachment and add it to the form
Geotagging¶
Some mobile devices will require Open Camera to be installed in order to enable geotagging.
To enable geotagging perform the following steps:
- In QField, go to the settings and make sure "Use native Camera" is activated
- Install the Open Camera app on your mobile device
- Within the Open Camera settings, make sure geotagging is enabled
- Within you mobile device settings, set the default camera app to Open Camera
- Completed! Open Camera will now be utilized while taking pictures with QField