google

Google map API key on diferent android devices

I'm using MapView in my app. I have API key from google fore my release key store. I'exporting signed APK with eclipse and trying to install it on devices. On G1 device with Android 1.6 everything works well, but on HTC Desire with android 2.2 maps doesn't appear. I see just grey grid and zoom controls. Where problem can be? Please h...

A question about Django and Google Apps

Just wondering about this, is it possible to use Django with the Google Apps API's? I have a small organization that uses Google Apps Education Edition. I was thinking about making a small intranet using Django, and I would love if the first page they saw when they logged in had a few widgets with their email, calendar, maybe docs. I loo...

Use Google Datasource to import Google Spreadsheets

I am trying to integrate a google spreadsheet into a google visualization using google datasource. The code that I am trying to execute is below. I am not getting an error alert or anything to output from this script. <script type='text/javascript'> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadC...

Google Maps API change default map style labels

I've developed an app using the Google Maps API (V3) and I have some custom map styles defined as described here. I can add a name on this tab quite easily by giving it a 'name' in the styledMapOptions when creating it. The problem I have is that I need the default terrain map in there but with another name/label. I was thinking I could ...

Is it essential to use a developer key in Google Jsapi calls?

I've been using Google Jsapi like so: <script type="text/javascript" src="http://www.google.com/jsapi"&gt;&lt;/script&gt; <script type="text/javascript"> google.load("jquery", "1.3"); </script> But the Google docs recommend doing this: <script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR_KEY_HERE"&gt;&lt;/scri...

Storing data in MySQL Server Database using AJAX

I'm very new at using JS and AJAX. Currently I'm working with Google Maps API and I need to store some locations (lat,long) to the server. What I want to do is store some sort of data in my existing MySQL database in server. I have got some good example as well like the following- http://www.tutorialspoint.com/ajax/ajax_database.htm N...

Google Maps is using javascript to render image or image files?

To use Google Maps API you fetch their api js file with: <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=set_to_true_or_false"&gt; </script> Then I use javascript on my page to interact with this API. I wonder what is going on in the background that I don't see. Is this file using javascript to rend...

What libraries does Google host (other than jQuery) ?

Hi fellow SOers, First, I apology if I used the wrong term in the question (Please feel free to edit if I'm wrong). I know Google hosts (almost) all version of jQuery, jQuery UI (js and css) For example : <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"&gt;&lt;/script&gt; <script ty...

Is Google not Support .net sites in Search List?

Hey Friends, Please help me. See, I have created lots of sites in .net from a long time, bz i just know .net and mvc, mvc2. but every time google not support my sites, when i launch google come and got my site pages fastly but after that google just come everyday only my site homepage that's it. I don't know what the reason? is i m doing...

Gmail close control when you are writing an e-mail

How Gmail shows this alert "Exit this page? Your draft has Been modified. Your draft has Been modified. Click OK to continue or Cancel to stay on the current page." when you are writing a email and you try to close the browser tab? ...

how to implement javascript "star" function of Google search result page?

Hello everyone, When in Google search result, in each entry of search result, there is a "star" nearby, and end user could click the star to indicate whether the result is good or not. I believe this function is implemented in Javascript. My question is, I want to implement a similar function in my own web application. Which is there i...

Upload data:image image without user interaction in a Google Chrome Extension?

I am making sort of a Parental Control Monitor extension thing; for a friend. Would there be any way to upload the images taken using the captureVisibleTab method? The data:file path cannot be saved and checked again, because the parent wouldn't be using the same computer. ...

getElementById works only after refreshing the page

Hi. I'm Trying to access results div in the results page of google.co.uk. Using firebug one can see that the id of the div is "res" but for some reason getElementById('res') fails. to make things even weirder - if i refresh the page (F5 or ctrl+F5), the function succeeds. Also, if i look in the source code of the results page i dont se...

How to add random delays between the queries sent to Google to avoid getting blocked in python

Hi, I have written a program which sends more than 15 queries to Google in each iteration, total iterations is about 50. For testing I have to run this program several times. However, by doing that, after several times, Google blocks me. is there any ways so I can fool google maybe by adding delays between each iteration? Also I have hea...

google maps API V3 -> how to move map automatically when dragging a marker

When you have a draggable marker in the gmaps API V2 and drag the marker over the bounds of the map, the map moves automatically. Thats not the case in gmaps API V3. When you move a marker over the bounds, the marker disappears behind the map. How to solve this? I could not find any options at the docs. Thanks in advance. ...

KML file polygon data to db/php?

Hi all, I'm using gmaps v3 and I am using a kml file to display polygon shapes. What I want to do, is that if I have a LNG/LAT coordinate, how to find whether it falls on the boundary or inside the shape? I understand you can do this with V2 maps but not V3. So then my questions are: Can I import the coordinates into my db in a usefu...

DotNetOpenAuth: No OpenID endpoint found

I've read the following manual: http://code.google.com/googleapps/marketplace/tutorial_dotnet.html Am I correct that nothing special is required to be done to use google API for user SSO? But when I tried to launch "Hello World" for marketplace application it returned me an error: Blockquote Blockquote> No OpenID endpoint found. Block...

Help to Upload zip file containing CSV file in GAE

I am a student who needs help in uploading a zip file that contains CSV file into the GAE Server using java. I am currently using uploadBean to upload my zip file in my server (Tomcat,localhost). Here is the code: UploadBean upBean = new UploadBean(); upBean.setWhitelist("*.zip"); upBean.setOverwrite(true); String path = getServletCon...

Cloud OS used by google,salesforce etc

Hi I recently heard about Windows Azure which is an Operating system for the data centers. Is there specific OSs used by google, salesforce for they own clouds. Can I find some papers that go through internals of these OSs please. ...

Reading zip files stored in GAE Blobstore

I have followed the sample code below to upload a zip file in the blobstore. I am able to upload the zip file in but i have some concerns reading the file. Sample Code http://code.google.com/appengine/docs/python/blobstore/overview.html#Complete_Sample_App My zip file has 6 CSV files where my system will read the files and import the ...