|
Google has this fine new Google Maps API v3 which is a "Javascript API".
Is there any possibility to invoke this API from a Windows Forms application written in Visual C# .net 3.5?
EDIT:
The goal is to convert addresses to lat/long format using the Google...
Started by Marc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the REST APIs and parse the response (XML/JSON/CSV.
Edit: Looks like the api key is no longer required.
But some more information about what you are really trying to do would be nice .
API.
|
|
I am writing a standalone application in Java that needs to be able to call custom Javascript APIs? Is there a way to call custom Javascript APIs in Java?
Started by stjowa on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Aside from the name, javascript and java have no relationship.
Should be possible by using Rhino.
|
|
Does the Google Maps Javascript API have a property/method that returns its exact version number?
I need this info for debugging purposes.
Started by Franz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Example:
<script type="text/javascript" src="http://www.google....
When you include Google Maps API you can choose version of it.
I suppose the G_API_VERSION could do :
This constant specifies the version of the API currently" .
|
Ask your Facebook Friends
|
I was wondering why JavaScript has such a confusing API. It is not consistent across browsers, there is a different way to get the value from each type of form input, and it is unforgiving of mistakes. jQuery has changed my life because its API is so ...
Started by Brian on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Creators of Javascript did not setup the API, since Javascript is a language, not an APII think....
(http://yuiblog.com/blog/2007/01/24/video-crockford-tjpl/)
The JavaScript API easier.
Is in the situation that it's in.
|
|
I am looking for a good API documentation for Javascript especially related to browsers and DOM. I am not looking for any kind of Javascript tutorial, but simply a documentation for all standard Javascript classes and for classes used in web browsers....
Started by Juha Syrjälä on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm rather fond of Got API , which lets you see easily....
Https://developer.mozilla.org/
The DOM section of it is probably what you look for, alongside with Javascript.
Gecko DOM Reference
JavaScript Kit - DOM Reference
And many more .
|
|
I want to use JavaScript to access the Google Maps API from Excel. What is the best way to do this?
(Users will enter input data into Excel, and my JavaScript will query Google Maps for the corresponding values.)
I am not concerned about the JavaScript...
Started by Rosarch on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But personally, I'd rather look at Google Spreadsheets.
Check out How can I use JavaScript within an Excel macro? .
A good place to start is the Google Maps API Developer's Guide and Reference .
|
|
Having become used to having auto-generated API docs for most of the languages I use it seems that there's a giant hole where Javascript documentation should be. I can't find any simple Javascript documentation thats arranged by object/module that lists...
Started by David Burrows on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Core JavaScript....
Https://developer.mozilla.org/en/JavaScript
This is the one I like the most.
I'd also recommend JavaScript: The Definitive Guide (aka The Rhino Book) by DavidMozilla has one of the best.
An excellent api section.
|
|
An API has a rate limit based upon the number of hits from a certain IP address.
My requests are AJAX - so they're performed by a javascript living somewhere on a page.
Does the IP being rate limited appear as the client's or the site's?
Started by Allan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That could also be done by the API.
But this is not necessarily what is being used for limiting .
Since javascript is executed client side (aka in the browser) the request will show the client's IP) address.
|
|
I'm looking for a reference that summarizes all of the available Javascript APIs that are introduced with HTML 5, for each browser that has implemented any of the new features. Does something like this exist? If nothing else, then at least the VIDEO tag...
Started by Greg Hinch on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But remember that it is of course still.
It contains some samples of Javascript.
Video> element.
|
|
Does anybody know of a Javascript chart API that will handle scaling and labeling for date values on both axes? It looks like I'll have to do manual client-side calculations for labels if I want to use Google Chart API.
My data set is potentially sparse...
Started by cdleary on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I've never used it but I've seen people.
(I do not know if it will handle your specific labeling issue.)
Take a look at Google Chart API .
You may wish to look into flot for a JavaScript chart API.
|