![]() |
|
GoogleMap plugin - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: GoogleMap plugin (/thread-8079.html) Pages:
1
2
|
GoogleMap plugin - sbillard - 2011-02-08 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? GoogleMap plugin - vincent3569 - 2011-02-08 In fact, I have migrated to 1.4.0.2. But I found a little bug : I read /zp-core/zp-extensions/GoogleMap.php :
` GoogleMap plugin - sbillard - 2011-02-08 That should have read GoogleMap plugin - vincent3569 - 2011-02-08 I don't want any text to reveal the map. accordind to me, the lines 286 to 288 are unnecessary : there is other code for hidding or not the map GoogleMap plugin - vincent3569 - 2011-02-13 hi I have installed the nightbuild (1.4.0.2 [6701]). GoogleMap plugin - sbillard - 2011-02-13 Sorry, your site behaves very badly. If I select another language, it takes me to the home page. But it does not remember the language, so I cannot get to the page with the map and be in anything but English. GoogleMap plugin - acrylian - 2011-02-14 Indeed, I am directed to the home page as well when selecting a language. The language is actually selected correctly. But besides that I am able to see the issue with the automatic German language setting. I sent screenshots via mail to you, sbillard. GoogleMap plugin - sbillard - 2011-02-14 Is there some reason that you do not want to use the ticket system to persue this? Because if you don't do that the problem will NOT be solved. GoogleMap plugin - vincent3569 - 2011-02-14 hi I have reopened the ticket #1797, and added some screnshot. GoogleMap plugin - vincent3569 - 2011-02-21 hi I have tried the NightBuild [6763]. But I found another mistake : if (empty($text)) {
} ` 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. GoogleMap plugin - sbillard - 2011-02-22 You are correct. This is one of the areas that is quite different in the Development build. The translation to the Support build was not correct. We will get it stratghtened out in tonight's build. GoogleMap plugin - vincent3569 - 2011-02-24 thanks a lot ! now the plugin is working well for me and I have no other problems. |