google map stuck on loading
Hello,
I'm encountering something weird when using google maps on my authors profile page.
Basically what I did is display the gmap on the author page and have it display an adress defined by new profile fields I make.
So, in the user profile page you can define street - city - state - zip, and on your author page the gmap sidebar makes an address out of it via
Code:
$make_address = ($user_street) . ' ' . ($user_city) . ' ' . ($user_state) . ' ' . ($user_zip);
However, when viewing the author page the gmap is stuck loading (the circlular loading icon). When using google chrome to inspect the webpage I can see that the address is correctly made (same format as on ad pages, where the gmap works):
Code:
var address = "correct-street correct-city correct-state correct-zip";
So my question:
if I try to display the gmap on other pages then single-ad, do I need to do something more then simply make sure the address is being made correctly, maybe something in the javascript?...
I hope I made myself clear about what my problem is.
Greets,