google

Retrieving the list of markers loaded from a ggeoxml

I need to get the list of markers after I load them on the map from a kml file with map.addOverlay(geoxml); I tried this geoxml = new GGeoXml("http://www.mydomain.com/mykmlfile.kml"); GEvent.addListener( geoxml, "load", function( ) { if ( geoxml.loadedCorrectly( )) { var markers = geoxml.overlayman.markers ...

What is the query limit for Google's Suggest API?

Does anyone know the query limit for this undocumented/unofficial google api? ...

Do Google Maps Flash API Markers fire an event when added to the stage?

With the Google Maps Flash API, I want to add an event listener which fires when the Marker is added to the Map using map.addOverlay(); Event.ADDED_TO_STAGE is not fired, though it seems logical. What are the alternatives? ...

Oauth callback problem

I am using OAuth with google data api. We have a portal only for authorized users. So when users are logged in and if they are accessing calendar page, they will be asked if they want to sync their calendars with google calendar. If yes, they will be redirected for authentication. Once user has granted access, google appends OAuth_Token ...

Problem about Chrome Extension

Hi! I try to write an extension and i saw the very restricted policy security. I should create an extension that allows me to listen and download podcast from web. It is possible? I use Chrome OS with VMWare, this OS has additional Api than Google Chrome Browser? Thanks ...

Heavy usage of python at Google

Google's heavy usage of Python, is it just a matter of taste or does it give them a competitive advantage? ...

Google search: Scrape results page in PHP for total results

Is it possible to scrape the Google search results page using PHP to pull out the total number of search results found? If so how would I go about doing this? Thanks ...

How to access Google Chrome browser history programmatically on local machine

I want to write a simple program which shows my internet activity over a period of time (which site I visited, how many times and so on). I mostly use Google Chrome browser. I found out Chrome stores browser history at this location - C:\Documents and Settings\\Local Settings\Application Data\Google\Chrome\User Data\Default (please corre...

does google crawl flash

i have one domain link text i want to know that does google crawl flash like in the intro of mentioned website thanks ...

Adding ID's to google map markers

I have a script that loops and adds markers one at a time. I am trying to get the current marker to have an info window and and only have 5 markers on a map at a time (4 without info windows and 1 with) How would i add an id to each marker so that i can delete and close info windows as needed. this is the function i am using to set th...

how to get google sitelinks on a website

Hi all! There are a lot of websites that look professional in Google results. Try searching for 'stackoverflow' and you'll see at the top a result with a title, a description and a table of 8 links to stackoverflow categories. That's what i'm interested in producing for future websites. So what must be done? Does it depend on the number...

Google's Oauth for Installed apps vs. Oauth for Web Apps

So I'm having trouble understanding something... If you do Oauth for Web Apps, you register your site with a callback URL and get a unique consumer secret key. But once you've obtained an Oauth for Web Apps token, you don't have to generate Oauth calls to the google server from your registered domain. I regularly use my key and token fr...

Casting problems with Google Maps API

Hi there, I'm trying to run the following line: Directions.loadFromWaypoints((Waypoint[])waypoints.toArray(), opts); But I'm getting: 23:41:44.595 [ERROR] [carathome] Uncaught exception escaped java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Lcom.google.gwt.maps.client.geocode.Waypoint; at com.presasystems.g...

How can I create a Searchstring for a Google AJAX Search API?

Hello, i have this code to get the search resutls from the api: querygoogle.php: <?php session_start(); // Here's the Google AJAX Search API url for curl. It uses Google Search's site:www.yourdomain.com syntax to search in a specific site. I used $_SERVER['HTTP_HOST'] to find my domain automatically. Change $_POST['searchquery'] to ...

geocode webservice address parameter written in another language

Dear fellow Programmers, I try to use the following google map webservice in order to locate greek addresses: http://maps.google.com/maps/api/geocode/json?address=Ακαδημίας 16&sensor=false and it does not work. If I hit the same exactly address but written with latin alphabet characters: maps.google.com/maps/api/geocode/json?address=ak...

Chrome extensions: Content script (jQuery) in Youtube does not work properly

I have this: $(document).ready(function() { $("button.yt-uix-expander-arrow").attr("id", "yt-uix-expander-arrow"); $("#yt-uix-expander-arrow").mouseover(function() { alert("Hello"); }); }); injected into Youtube. Using right click > inspect element, the <button class="yt-uix-expander-arrow"> has a id="yt-uix-expand...

what exatly google.setOnLoadCallback(initalize) function means?

while coding javascript and ajax, there is no proper documentation for this function? i searched this term using api src="http://www.google.com/jsapi " and searchControl.execute("abhilashm86"); how does this google.setOnLoadCallback(initalize) called internally? is this function just for a new search term when user clears previous sea...

Java: how to use Google's HashBiMap?

Keys are a file and a word. The file gives all words inside the file. The word gives all files having the word. I am unsure of the domain and co-domain parts. I want K to be of the type <String> and V to be of type <HashSet<FileObject>>. public HashBiMap<K<String>,V<HashSet<FileObject>>> wordToFiles = new HashBiMap<K<St...

Google Account ID?

Hi, I am building an app on top of Google Reader. Since users have to enter their Google Account data, I'd like to use this data to assign personal settings to each user. However, if I do so and a user would change his email adress or password(for the whole Google Account), I wouldn't be able to identify him anymore. Thus, I need to kn...

alternatives to accessing google reader with oauth?

I'm really new to this oauth stuff. I want to access a user's google reader liked items feed. This blog says that oauth doesn't work (yet) with google reader. The working way seems to be to get the user's google credentials (email, password) directly, and login directly to google. This also gives me access to the rest of their services....