多面体のギャラリーを作成する
多数の画像を同時に可視化すると便利な場合がある.
In[1]:=

polyhedra =
EntityValue[
EntityValue[Entity["Polyhedron"], "Entities"], {"Name", "Image"}];
そのような画像のギャラリーをWeb上に作成するためにはGalleryViewを使う.
In[2]:=

CloudDeploy[GalleryView[polyhedra[[All, 2]]]]
ギャラリーを見てみる.
タイトルを加えてGalleryViewをより見やすいものにする.
In[3]:=

CloudDeploy[
GalleryView[<|"Title" -> #1, "Content" -> #2|> & @@@ polyhedra,
AppearanceRules -> <|"Title" -> "A bunch of polyhedra"|>]]
見やすくなったギャラリー.
