I am looking to have an array of Google Map API keys like so:
var keys = [
"key1",
"key2",
"key3"
];
I've checked the documentation and can't see see anything that I need - Basically I'd like to have some logic that checks the first key and if it hasn't reached it's usage limit to use that key, if it HAS reached it's limit to then check the second key. Is this possible?
Carl