My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 1: Unable to use Premier API client id instead of API key
1 person starred this issue and may be notified of changes. Back to list
Status:  New
Owner:  ----


 
Reported by findl...@gmail.com, Sep 18, 2009
What steps will reproduce the problem?
1. Enter Google Maps Premier API client id to the key parameter 
2.
3.

What is the expected output? What do you see instead?
Initialization failed: please check the API key,
swf location, version and network availability.

What version of the product are you using? On what operating system?
1.0

Please provide any additional information below.
Need a separate parameter to pass along the bridge to use Premier API
client id instead of API key.

Sep 18, 2009
#2 findl...@gmail.com
From line 89, this will resolve the issue:
    var flashvars = {
      bridgeName: bridgeName
    };
    if (ps.params.key !== undefined) {
        flashvars.key = ps.params.key;
    } else if (ps.params.client !== undefined) {
        flashvars.client = ps.params.client;
        flashvars.sensor = false;
    }


Powered by Google Project Hosting