Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All.
I am using a google map extension that i took from this thread (and yes, its modified to my needs now). I have attached the js file that i am using.
the problem i have now is, everytime this extension runs on any browser some of the scripts are considered as unsafe scripts and the browser shows a warning like this in chrome.. and a similar warning appears on firefox as well.
Could someone please help me understand, which part of js is making the browser identify the script as unsafe.
The Map looks like below.
Attached is the JS that i am using for this map.
Thanks,
Aadil
It happens because your mixing http and https sources into your loadLibs, you should choose only one method
Aadil,
It would be helpful to have an example QVW and the full QAR file in order to test, but my guess is that you may be facing an issue because you are referencing unsecured scripts. Try loading the google libraries using https:
Or try the attached script and see if it helps.
It happens because your mixing http and https sources into your loadLibs, you should choose only one method
Thank you!