google

Google Maps API {removeOverlay(marker);} AND {clearOverlays();}

i have a problem in removing the old markers without removing the central point of the circle "it's also a marker" the source :::: <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <script src="http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;se...

In Flex, what's the difference between 'creationComplete' and 'addedToStage'?

I want to count (via google analytics) the times a pop-up is displayed to the user. Which event should I use to deduce that the pop-up is being displayed to the user? ...

Google Maps API {removeOverlay(marker);} AND {clearOverlays();}

i have a problem in removing the old markers without removing the central point of the circle "it's also a marker" the source :::: <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <script src="http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;se...

Problem embedding google map with route

I got iframe with googlemap containing static location of company headquoter, i used for this google generator, and all that works fine. I got also to make possible creating routes from any location to that destinantion which is headquoter, so i picked random location, again generated iframe for this map. Everything worked fine when i ...

setting the side for the radio button gwt

hi, how can make the text of the radio box appear on the left side of the button instead of the right? on left to right languages the standard is the text on radio button is on the right of the radio button, i need to write ui for a right to left language so the test should be placed on the left of the radio button. any advice?? ...

How can Web Developers take advantage of Google's Public DNS

Google recently announced their Public DNS Service. It's suppose to be faster and more secure than regular DNS. Based on the Google instructions and my limited understanding of DNS it can only be used by web surfers. How can web developers take advantage of Google's new service to better our websites and web applications? Is their a...

IE8 breaks Google CDN in Intranet app?

I am using IE8 with a Intranet app in Local Intranet zone and find that it refuses to load the Google CDN hosted jQuery! Is there some setting I need to change? Hovering my mouse over the Lock icon at the bottom right of the window shows a tooltip "No items are being blocked on this page". Help? Thanks ...

Number of google pages hits as a function of time.

In each search in Google one can see number of google pages found. Is it possible to find what was this number in the past? ...

How come google crawls some sites real time ?

I posted a source code on codeplex and to my surprise found that it appeared on google within 13 hours. Also when i made some changes to my account on codeplex those changes reflected on google within a matter of minutes. How did that happen ? Is there some extra importance that google pays to sites like Codeplex, Stackoverflow etc to ma...

Hosting Google Apps UI in my app

I'm investigating the possibility of re-using Google Apps/Docs in a local hybrid desktop/browser application. I've been going through the Google documentation on manipulating docs, eg. the Spreadsheet. I can't seem to find any info on actually hosting the UI. Is this possible, or does it require some form of permission from Google? Tha...

Why is it important to load a JS framework from Google's AJAX Libraries API ?

I remember reading somewhere that it is a lot better to load a JS framework from Google's AJAX Libraries API, rather than using a locally hosted one. This means that instead of : <script src="jquery.js"></script> You load the framework from Google: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;...

Writing pseudo-crawler for web statistics.

I'm tasked with writing a web pseudo-crawler to calculate certain statistics. I need to measure the percentage of html files that start with <DOCTYPE against the number of html files that do not have it and compare this statisitic between sites on different subjects. To do so the idea is to search with google for different terms (like "A...

How can we create our own google lab feature?

is it possible and how ? can any one share the URL that can help to create new google lab feature.. ...

Is there a way to parse a Google search string to a table variable in T-SQL?

Is there a way to parse a Google search string to a table variable in T-SQL? By Google search string I mean, including the plus sign (require), minus sign (exclude), and exact phrase (double quotes) operators. For example the following search string: one -two +three "four five" -"six seven" +"eight nine" "ten eleven twelve" Would be ...

Google Maps GOverviewMapControl() and GAdsManager

I have a GMap2 object with a GOverviewMapControl and a GAdsManager, but they both appear in the lower right hand corner. How can I get them to appear in different parts of the map? Here's my Overview: map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); map.addControl(new GOverviewMapControl()); map.enabl...

Google Query from Java?

I'm writing a Java program, and I want a function that, given a string, returns the number of Google hits a search formed from that query returns. How can I do this? (Bonus points for the same answer but with Bing instead.) For instance, googleHits("Has anyone really been far even as decided to use even go want to do look more like?") w...

Java: Using GSon incorrectly? (null pointer exception)

I'm trying to get the hits of a google search from a string of the query. public class Utils { public static int googleHits(String query) throws IOException { String googleAjax = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&amp;q="; String json = stringOfUrl(googleAjax + query); JsonObject hits = new Gson().fromJson(js...

How to monitor Google Alert RSS feed produced "as-it-happens"?

I have a Google Alert, which I set to be delivered as an RSS feed as-it-happens But is polling that RSS feed the only way to get RSS feed or is there a way to get notified from Google alert as the feed is published from Google? (say through a webservice, etc) ...

Does anyone use Google Analytics? How Google does it to avoid counting the owner of the website as visitor?

I don't want to be counted as visitor every time I test my page in the hosting. Does Google know i'm the owner of the site by checking if i'm logged in my Gmail account? ...

How to query google through desktop java app?

I 'm trying to write a simple java desktop app to query google and get the results.I 've read so many articles in the past few days.I know that I have to do it through the gwt (google web toolkit) ,the api that google offers to programmatically query its search engine.My problem is that the gwt seems to be usefull only to construct ajax ...