Reputation: 59505
How do I check if google API v3 supports current browser? I need some function to do something like this:
if (!FUNCTION_I_AM_LOOKING_FOR()) {
alert('Sorry, your browser is not supported by Google Maps.');
return;
}
I wasn't able to find appropriate function in the API v3 reference
Upvotes: 1
Views: 3259
Reputation: 22830
This functionality is currently not available in v3 (it is called GBrowserIsCompatible()
in v2). There is an issue filed in the gmail-api-issues tracker.
Edit by OP: Also look here: Google Maps API v3 BrowserIsCompatible
Upvotes: 2