I'm using the theme Zpbase. I've installed the Plugin GoogleMap, which works great for me when viewing a physical album (the function collects all the coordinates from the images in a physical album and shows it on a Google Map, and it is possible to view images by clicking on the markers on the map) or when viewing one specific image (the map then only shows the coordinates of this image).
For example, this is how it looks like in one of my physical albums: http://bildbank.skarefjall.se/NaturVarSommar/Sverige/Harjedalen/. The link "Google map" appears and when clicking on that you can see all the coordinates for the images in that album.
I'm interested in using this functionality also on the Archive page and when performing a search of images. What I would like is that it should be possibly to see a map of ALL images with GPS-information on the Archive page. I would also like that the images of one specific search would appear on a Google Map. That is, the same functionality that is being used when collecting data from a physical album. Is this possible to achieve?
A part of the code in album-masonry.php, that I think creates the map with all the images in a physical album;
<div id="object-desc"><?php printAlbumDesc(); ?></div>
<?php if function_exists('printGoogleMap')) { ?><div id="map-wrap"><?php printGoogleMap('Google Map',null,'hide'); ?></div><?php } ?>
I've tried pasting the code above in the related .php-files, but no map shows. And I suppose this is due to the fact that the functions can't collect the coordinates in the Archive and Search-pages, or am I making a wrong conclusion?
I'm not at all a programmer, I must add...