Jquery Store Locator插件
当我使用网络托管服务器的安全网址时,地图插件可以正常工作,但是当我使用自己的域名安全网址时,地图插件无效。
Map does not load for:
https://mydomain.ext/mapstuff/default-location-example.html
Map does load via the server name url:
https://secureservername.com/~myusername/mapstuff/default-location-example.html
这就是浏览器现在处理跨站点jquery调用的方式吗?该域被视为掩码,因此不值得信任,Jquery Store Locator Plugin等应用程序会自动停用?除了使用主机的安全服务器名称网址之外,我们这些租用网站托管的人是否有解决此问题的方法?
答案 0 :(得分:0)
解决方案:现在可以使用URL并且不使用HTTPS。
我在示例html中忽略了这一行:
<script src="https://maps.google.com/maps/api/js"></script>
I needed to fill that out with an API key from Google Maps API:
<script src="https://maps.google.com/maps/api/js?key=MY_API_KEY_HERE"></script>