QuestionQ94
Create and configure Power AppsThe planning department for a municipal government wants to survey land in the town and define new property lines. You define a data model for the surveys.
Surveyors and other department employees need a phone app to capture survey data.
You need to define a Power Apps component framework (PCF) component that will be used across multiple functional areas.
How should you complete the PCF control manifest?
Select
<manifest> <control namespace="surveyCapture" constructor="Survey" ...> <property name="propertyRollNo" of-type-group="SingleLine.Text" usage="bound" required="true" /> <property name="latitude" of-type-group="" usage="input" required="true" /> ... <feature-usage> <uses-feature name="Device.getCurrentPosition" required="true" /> <uses-feature name="" required="true" /> </feature-usage> <resources> ... </resources> </control> </manifest>
Community Discussion