在表单上添加任意数目的表单域
在 FormFunction. 的表单中有时候没有办法知道需要多少个表单域. RepeatingElement 使你能够创建一个可以包含若干行超级域.
In[1]:=
CloudDeploy[
FormFunction[
"addresses" -> RepeatingElement["StreetAddress", {2, 5}],
GeoGraphics[
Append[GeoMarker /@ #addresses,
Style[Line[TravelDirections[#addresses]], Thick, Red]]] &,
AppearanceRules -> <|
"Title" -> "Get travel directions for your trip"|>]]
该表单开始有两个域;但你可以点击加号来得到更多.
提交表单,查看你的旅行地图.