Is this with the 1.4.0.2 release? If so you will most likely have some conflicting CSS. Be sure that the "container" where you wish to display your map is at least as big as the area needed to display the map. Otherwise it will not render correctly (know google map issue having nothing to do with zenphoto.)
BTW, did you not get updates from the ticket?
In fact, I have migrated to 1.4.0.2.
Now googleMap plugin is going well and well displays my pictures (with correct zoom level)!
But I found a little bug :
I wrote this line `` to automatic display the map, without any text : but it doesn't work.
I read /zp-core/zp-extensions/GoogleMap.php :
lines 286 to 288 : there are a few lines of code that are unnecessary :
` if (empty($text)) {
$hide = 'hide';
}
`
Are you OK with that ?
I don't want any text to reveal the map.
I want to always have the map displayed, if they are some localized pictures
accordind to me, the lines 286 to 288 are unnecessary : there is other code for hidding or not the map
hi
I have installed the nightbuild (1.4.0.2 [6701]).
the problem is still the same :
with english language (and no european languages), pictures are displayed with a correct zoom level in googlemap.
with european languages (french, spanish, german, italian,...), the zoom level is incorrect.
sbillard, acrylian, I have activated dynamic-locale plugin : you could see the problem here : http://vincent.bourganel.free.fr/zenphoto_test2/index.php?album=neige
hi
I have reopened the ticket #1797, and added some screnshot.
hi
I have tried the NightBuild [6763].
Now the googlemap plugin works fine : the map is displayed with correct zoom level, with all languages.
But I found another mistake :
on changeset [6684] http://www.zenphoto.org/trac/changeset/6684, you have added this code :
`
if (empty($text)) {
$hide = 'show';
}
`
it was OK for my pesonnal use (I want to always have the map displayed, with no text to reveal the map, if they are some localized pictures)
but now, you have this code :
`
301 if (empty($text)) {
302 $hide = 'show';
303 }
304 if (is_null($hide)) {
305 $hide = getOption('gmap_hide');
306 }
307 if ($hide) {
308 $hide = 'hide';
309 } else {
310 $hide = 'show';
311 }
312
313 if (!is_null($callback)) {
314 call_user_func($callback,$MAP_OBJECT);
315 }
316 if (empty($text)) {
317 $hide = 'hide';
318 }
`
it seems that lines 316-318 are redundant with lines 301-303 but the last ones are doing the wrong thing.
thanks a lot !
now the plugin is working well for me and I have no other problems.