You can find the new Map page on my site, displaying all geo-localized pictures of my gallery.
With this map, I propose a new way to discover the places visited during various trips, hiking...
Edit
(09/01/2014):
Some
people
have
asked
me
how
to
create
a
page
with
all
the
geotagged
images
of
the
gallery.
Rather
than
respond
to
each
request,
I
give
you
my
recipe
to
do
that:
- you have to use Zenphoto 1.4.6 (or more) that can do research on non-empty fields, and enable googleMap plugin
- in the administration pages, in options > search tab, select "longitude" and "latitude" in the list of fields that may be used
-
in
your
gallery
page,
create
a
new
research
solely
on
these
"longitude"
and
"latitude"
fields,
entering
the
search
criteria
*(star character, meaning non-empty) -
with
search
result,
from
menu
"create
album"
of
admin
panel,
create
a
dynamic
album
and
name
it
as
you
want
("images-localisees"
in
my
example)
and
choose
to
see
only
published
images:
criteria
of
dynamic
album
have
to
look
like
this:
"words=*&searchfields=exifgpslatitude,exifgpslongitude&inalbums=0&inimages=1&unpublished=0" -
create
a
new
page
and
enter
the
following
code
in
the
code
block
1
(this
code
is
adapted
to
the
zpArdoise
theme,
feel
free
to
suit
your
personal
needs):
<?php
$album = newAlbum("images-localisees.alb");
if (is_object($album)) {
makeAlbumCurrent($album);
}?>
<div id="map">
<?php printGoogleMap(NULL, NULL, 'show', $album);?>
</div>
That's all folks !
Olivier F.: on 08/20/2014
Petite question : comment obtenir une carte de ce type sur Zenphoto ?
Le plugin GoogleMap d'origine le permet il ou bien l'avez vous customisé ?
Vincent: on 09/02/2014
Je viens de compléter mon article pour expliquer comment créer une page contenant toutes les photos géolocalisées de la galerie.
---
I have just updated my article to explain how to create a page with all the geotagged photos of the gallery.