Quote:
Originally Posted by StarBuG
Hi
I have now upgraded from 1.0.3 to 2.0.2 and I have a few questions.
1) how do I set the map to hybrid by default? (a switch in the acp options would be nice for a later version)
2) In firefox when avatars are on the avatar goes outside the "buble" at the bottom
Please help
StarBuG
|
As in the hotspot edition the maptype will be set in the admincp
For now open the product xml and look for
PHP Code:
map = new GMap2(document.getElementById("map"),{mapTypes:[G_NORMAL_MAP,G_SATELLITE_MAP,G_HYBRID_MAP]});
change this to
PHP Code:
map = new GMap2(document.getElementById("map"),{mapTypes:[G_HYBRID_MAP,G_NORMAL_MAP,G_SATELLITE_MAP]});
That will fix it.
If you want the small map to do the same just change the second and third occurence too.
The bubble is because the bubble is loaded before the avatar, so that bubble isn't correctly sized if you click the marker again it should be ok.