up vote 10 down vote favorite
2
share [g+] share [fb]

We recently discovered that the Google Maps API does not play nicely with SSL. Fair enough, but what are some options for overcoming this that others have used effectively?

Will the Maps API work over SSL (HTTPS)?

At this time, the Maps API is not available over a secure (SSL) connection. If you are running the Maps API on a secure site, the browser may warn the user about non-secure objects on the screen.

We have considered the following options

  1. Splitting the page so that credit card collection (the requirement for SSL) is not on the same page as the Google Map.
  2. Switching to another map provider, such as Virtual Earth. Rumor has it that they support SSL.
  3. Playing tricks with IFRAMEs. Sounds kludgy.
  4. Proxying the calls to Google. Sounds like a lot of overhead.

Are there other options, or does anyone have insight into the options that we have considered?

link|improve this question

1  
Hi Brad. Time to accept stackoverflow.com/questions/3437/… instead? Google Maps now works with SSL for free. – Markus Olsson May 13 '11 at 19:15
feedback

6 Answers

up vote 8 down vote accepted

I'd agree with the previous two answers that in this instance it may be better from a usability perspective to split the two functions into separate screens. You really want your users to be focussed on entering complete and accurate credit card information, and having a map on the same screen may be distracting.

For the record though, Virtual Earth certainly does fully support SSL. To enable it you simple need to change the script reference from http:// to https:// and append &s=1 to the URL, e.g.

<script src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1" type="text/javascript"></script>

becomes

<script src="https://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1&s=1" type="text/javascript"></script>
link|improve this answer
Their SSL is not valid though, they use mixed content as well. – dr. evil Jan 20 '11 at 12:31
Thanks! Here is a working example: bl.ocks.org/885346 – mager Mar 24 '11 at 16:33
feedback

Google Maps API Premier costs you 10K per year.

Comment on the issue! Together we might be able to convince Google:

http://code.google.com/p/gmaps-api-issues/issues/detail?id=591

link|improve this answer
The Maps API v3, Static Maps API, and Maps API Web Services are now available to all developers over https: googlegeodevelopers.blogspot.com/2011/03/… – fabian Dec 14 '11 at 14:15
feedback

Just to add to this

http://googlegeodevelopers.blogspot.com/2011/03/maps-apis-over-ssl-now-available-to-all.html

Haven't tried migrating my SSL maps (ended up using Bing maps api) back to Google yet but might well be on the cards.

link|improve this answer
Seems to be working great! Documentation: code.google.com/intl/en-US/apis/maps/documentation/javascript/… – Markus Olsson Apr 19 '11 at 12:13
+1 Thanks for the link! – Jim Geurts May 10 '11 at 16:06
feedback

This seems like a buisness requirements/usability issue - do you have a good reason for putting the map on the credit card page? If so, maybe it's worth working through some technical problems.

You might try using Mapstraction, so you can switch to a provider that supports SSL, and switch back to Google if they support it in the future.

link|improve this answer
feedback

I would go with your first solution. This allows the user to focus on entering their credit card details.

You can then transfer them to another webpage which asks or provides them further information relating to the Google Map.

link|improve this answer
feedback

If you are a Google Maps API Premier customer, then SSL is supported. We use this and it works well.

Prior to Google making SSL available, we proxyed all the traffic and this worked acceptably. You lose the advantage of Google's CDN when you use this approach and you may get your IP banned since it will appear that you are generating a lot of traffic.

link|improve this answer
Google Maps Premier is great, if you work for a larger company with 10k just sitting around. If you're like me, you're sort of out of luck it seems. – docgnome Oct 15 '09 at 19:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.