GoogleMap, several bugs patched - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13) +--- Thread: GoogleMap, several bugs patched (/showthread.php?tid=6713) |
GoogleMap, several bugs patched - Prescol - 2014-09-03 I was working with Google Map plugin and found several bugs. I worked hard to find it and solve. The bugs [*] Working with several maps and anchors causes a mistake on saving that changes or deletes several anchors. (Javascript code bug) [*] Some html elements are bad formatted [+] Optimized search of elements in jquery [+] Checks if Shadow elements are setted to prevent E-notice errors. I have seen a lot of changes that can be done to improve performance and use. But nowadays i havenĀ“t so much time. RE: GoogleMap, several bugs patched - moped - 2014-09-12 Well, it didn't show a map on my site. I had to change line 103: Code: $(document).ready(function()' Code: jQuery(function($)' You also forgot to include the translation for "NOMBRE_MENU". But now it works for me. By the way, can you tell me why my zoom controls are broken? So long, moped RE: GoogleMap, several bugs patched - moped - 2014-09-15 Ok, I fixed it myself. The broken zoom controls came from my bootstrap css file, where <img> is set to max-width:100%. In googlemap.php you use Code: $div ='<div class="gmapsxenon" id="gmap_'.$gmap_config[$i]['id'].'"></div>'; So I changed class="gmapsxenon" to class="google-maps" and it's ok. If you don't have a css where it is defined, and don't want to change the plugin file, you can use this in your main css file: Code: /*--------- Google Maps ----------*/ Code: .google-maps img { So long, moped RE: GoogleMap, several bugs patched - shawn_a - 2014-09-15 I would think google embed has its own css resets, perhaps they are missing. RE: GoogleMap, several bugs patched - herbie - 2017-01-03 Thank you very, very much! |