Google dropped that feature in Maps V3. An alternative to try is the full post tag:
https://code.google.com/p/wordpress-geo-mashup/wiki/TagReference#Full_Post
Thread Starter
dywp
(@dywp)
Hi
Thanks but thats not really what I need.
I used to have a global map that when you click the marker you get the title and then when you click the expand its shows the full text. Is there a way to that that now?
Thanks
You’d have to create your own info window using the javascript API:
https://code.google.com/p/wordpress-geo-mashup/wiki/JavaScriptApi
Thread Starter
dywp
(@dywp)
Hi Ok Thanks,
Im trying to add
google.maps.event.addListener(infoWindow, 'domready', function() {
// whatever you want to do once the DOM is ready
});
when you open one of the infowindows.
I added it using the custom.js file but it doesnt seem to work.
I went through the docs but cant seem to find the correct way to add it.
Thanks
For Google V3, Geo Mashup creates an undocumented property to use a single info window. You could use http://code.cyberhobo.net/jsdoc/geo-mashup-1.7/symbols/GeoMashup.html#event:markerInfoWindowLoad:
GeoMashup.addAction( 'markerInfoWindowLoad', function( marker, options ) {
// Use marker.map.geo_mashup_info_window object
} );