Hi Tomáš,

Can you try adding the following to your Web.config:

1
2
3
4
5
6
<configuration>
  <appSettings>
    <add key="google.maps" value="https://maps-api-ssl.google.com/maps/api/js" />
  </appSettings>
...
</configuration>

Thanks,
Anton

By on 11/9/2012 9:21 AM ()

- How easy, thank you Anton.
There are remaining jQuery resources, which are loaded from http:

1
2
3
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21//jquery-ui.min.js" type="text/javascript"></script>
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/base/jquery.ui.all.css" />
...

Can I reconfigure even this?

Cheers,
Tomas

By on 11/11/2012 4:27 AM ()

This seems to work for me:

1
2
3
4
5
6
7
8
<configuration>
  <appSettings>
    <add key="IntelliFactory.WebSharper.JQueryUI.Dependencies+JQueryUIJs"
         value="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/" />
    <add key="IntelliFactory.WebSharper.JQueryUI.Dependencies+JQueryUICss"
         value="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/base" />
  </appSettings>
</configuration>

The keys are based on the FullName of the class representing the dependency. This is how resources are usually configured across most of our extensions, google maps are an exception.

By on 11/12/2012 6:58 AM ()

For me too. Thanks!

By on 11/12/2012 8:57 AM ()
IntelliFactory Offices Copyright (c) 2011-2012 IntelliFactory. All rights reserved.
Home | Products | Consulting | Trainings | Blogs | Jobs | Contact Us | Terms of Use | Privacy Policy | Cookie Policy
Built with WebSharper