All Questions
6 questions
-1
votes
2
answers
2k
views
ReferenceError: google is not defined / Geocoding API
I tried to create geocoding function (geocoding API), it keeps returning google is not defined, I already changed the link according to this answer but it didn't work :( It bugged at geocoder = new ...
0
votes
0
answers
849
views
Dark Sky API with Javascript
I am using Dark Sky API to create a weather app. I am stuck at one point. I am trying to make an API call of Time Machine. The format given in the documentation is :https://api.darksky.net/forecast/[...
0
votes
2
answers
11k
views
Reading JSON data from Google Geocoding API with jQuery
I am trying to learn about Google Maps Geocoding and how to read the JSON data it sends back. This is what Google sends back:
{
"results" : [
{
"address_components" : [
{...
0
votes
0
answers
82
views
Meteor Google Maps Retrieve Specific Results from JSON
I'm trying to retrieve for example the formatted_address in Google Maps. I'm currently using Meteor and my code are as follows:
Template.searchResults.helpers({
exampleMapOptions: function() {
...
3
votes
3
answers
10k
views
JSON google geocode API get country
I have a JSON: http://maps.googleapis.com/maps/api/geocode/json?latlng=49,19&sensor=false
and I need get only short_name of country. (For this example 'SK').
Therefore I get the short_name which ...
0
votes
3
answers
2k
views
Retrieving Latitude&Longitude from Google GeoCoding API
What I want to do is to generate latitude & longitude given an address, so I thought Google geocoding API would be great.
I've tried everything and still it doesn't want to work. I am not an ...