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
...
Does anyone know the query limit for this undocumented/unofficial google api?
...
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?
...
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 ...
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
...
Google's heavy usage of Python, is it just a matter of taste or does it give them a competitive advantage?
...
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
...
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...
i have one domain
link text
i want to know that does google crawl flash like in the intro of mentioned website
thanks
...
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...
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...
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...
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...
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 ...
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...
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...
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...
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...
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...
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....