Mapping module : thumbnail, item set and full-screen map

Several questions regarding the mapping module :

  1. Is it possible to make it detect the thumbnail as the first media appearing in the popup on the map?

  2. Given that it is not (yet) possible to geolocate an item set, is it at least possible to generate a map where a point on the map refers to all items associated with a specific geolocation?

  3. Is it possible to create a page with a full-screen map?
    Thank you in advance.

Currently, you can link multiple items to one map point, but setting the first media as a thumbnail or geolocating an item set may not be supported. Full-screen map pages may be possible depending on the platform.

Concerning my first question, I found the way. In the phtml file “item-feature-content” in the Mapping module, just add :

<?php echo $this->thumbnail($item, 'square'); ?> <?php if ($media): ?> <?php echo $this->thumbnail($media, 'medium'); ?> <?php endif; ?>