Just to let you know that the Googlemap is now on version 1.0.2.
- Performance
- Full phrases support
- The special character list is now bigger to avoid the javascript error
- The special chararcter check is done on first insert and no longer when creating the googlemap xml (boost)
Download the latest version on vbulletin.org
UPGRADE to the Googlemap version 1.0.2:
1. Upload VBGooglemap.php to the forum root (overwrite ok)
2. add product-VBGooglemap.xml(Plugin System / Manage Products / Add Import product) and SET OVERWRITE TO YES 3. Enjoy
Hope you like it.
Development on 1.0.3 has started with event and hotspots support.
To change the text colour in the balloon
Code:
if ( (type=="yellow") || (type=="red") ){
title = "<a href='/'>"+ title +"</a>";
}
var content = "<div align=\"center\"><strong>"+title +"</strong></div>" + "<hr width=\"100\"/><div align=\"left\" style=\"width: 20em\">" + text +"</div>";
and change this to
Code:
if ( (type=="yellow") || (type=="red") ){
title = "<a href='/'><font color='#000000'>"+ title +"</font></a>";
}
var content = "<div align=\"center\"><strong><font color='#000000'>"+title +"</font></strong></div>" + "<hr width=\"100\"/><div align=\"left\" style=\"width: 20em\"><font color='#000000'>" + text +"</font></div>";
You can change the #000000 to anything you like