Several questions regarding the mapping module :
-
Is it possible to make it detect the thumbnail as the first media appearing in the popup on the map?
-
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?
-
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; ?>