googlemaps infowindow |
[eluser]Unknown[/eluser]
Hello Steve I love the Google maps library you provided! My question is how/what do I add to the JavaScript code to make my ‘infowindow_content’ open on an ‘onmouseover’ instead of clicking the icon? Here is the code snipet I’m working on. $marker = array(); $marker['position'] = $coordinate->lat.','.$coordinate->long; $marker['icon'] = '/househaggler/images/marker_icon.png'; $marker['onmouseover'] =???????????; $marker['infowindow_content'] = ‘hello world’; $this->googlemaps->add_marker($marker);
[eluser]BIOSTALL[/eluser]
Hey Mikolaj, Thanks for using my Google Maps API library. Hope you're getting on alright with it ![]() In reference to your question I include the code below to achieve what you're after: Code: $marker['onmouseover'] = 'iw.setContent(this.get("content")); iw.open(map, this);'; Hope that helps ![]() Cheers, BIOSTALL
[eluser]Unknown[/eluser]
Thanks Steve. Your solution worked perfectly. I'm not familiar with some of the Javascript syntax that you used. Could you recommend any links pertaining to the Javascript utilized with your Google maps library. Maybe we could entice you to write about similar Javascript techniques in your excellent blog at biostall.com Mikolaj Thunder Bay, Canada
|
Welcome Guest, Not a member yet? Register Sign In |