スキーマ宣言には次のものがあります。
CollectionName.attachSchema(new SimpleSchema({
issue: {
type: String,
label: "Describe the issue you noticed",
max:256
},
location: {
label: "Place a marker on your approximate location",
type: String,
autoform: {
type: 'map',
afFieldInput: {
type: 'map',
autolocate: true,
zoom:16
}
}
}
ユーザーがこの挿入フォームで写真を撮れるようにしたい
{{> quickForm collection="CollectionName" id="inserttoCollection" type="insert"}}
個人が問題の場所を記録するだけでなく、どの問題に気付いたかを写真に撮れるようにしたいと考えています。
私の質問: ユーザーが写真を撮ってアップロードできるように、フィールドを適切に設定するにはどうすればよいですか。