Sign in to follow this  
FMHIUser

Map not showing IE6 or IE7

Recommended Posts

Hello,

 

 

 

My map will not load in IE6 or IE7. It works on Firefox for PC and Mac.

 

 

 

It is not working from either the server or from the desktop of the machine. (I have not tried running it from http://localhostxxxx as I don't think think that will help.)

 

 

 

Here is the map embedded in my web template (Coldfusion):

 

 

 

http://www.fmhi.usf.edu/CFS_Dev/CFS_TREaD_LogicModelDev/map/

 

 

 

Here is the map with HTML generated by the Fusion Maps GUI:

 

 

 

http://www.fmhi.usf.edu/CFS_Dev/CFS_TREaD_LogicModelDev/map/map.html

 

 

 

Any suggestions?

 

 

 

Thanks

Share this post


Link to post
Share on other sites

Hi,

Could you please revert back to FusionMaps.js that our Download Pack has distributed?

I find that this is the line that you have modified:

swfNode += '<param name="movie" value="../LM-USA/'+ this.getAttribute('swf') +'" />';

which seem to fall heavy on all browsers which support <object> tag to load embeded objects in the HTML. It is trying to load the swf files from another path (hardcoded as ../LM-USA/ ) which, i fear does not exists or does not contain the required SWF files. There would be no problem with Firefox or browsers that use <embed> since that portion is not modified to use this hardcoded path.

The above line should be :

swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';

I hope things will work fine and smooth now. It's a pleasure helping you out.

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this