All Questions
Tagged with google-geocoding-api json
28 questions
1
vote
1
answer
178
views
Look up information in a json string using Python
I tried to find the latitude and longitude of an address through Google Geocoding API.
I got the json string using the following code:
address = "the Empire State Building"
api_key = " ...
0
votes
2
answers
287
views
How to obtain only specific values from a nested JSON response from a Google API?
I am building a reverse geocoding plugin for QGIS, and need to read only specific fields (e.g. only the postal code) from a JSON file. The JSON is the response to a Google Geolocation API call, and is ...
0
votes
1
answer
2k
views
C# Getting lat and long from Google GeoCoding API
In my C# project, I'm trying to get the lat and long location of a building. I used this thread as a base Distance between addresses and tried to adapt it to get the lat and long of a location. At the ...
-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 ...
-1
votes
1
answer
54
views
Use fields specifier for maps.googleapis?
I'm trying to get a subset of the json return from a maps.googleapis call. Specifically the location which is in the body of the current return below:
"location" : {
"lat" : 44.0581728,
"lng" ...
0
votes
2
answers
819
views
Extracting JSON data from Google geocoding API in R
I'm quite new to Json data structure and so unable to extract data from it.
This is the sample rows from Json data which is stored in csv file
row1) {"results":[{"address_components&...
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
1
answer
898
views
Object Reference not set to an instance of an object (Google Geo-fencing API) [duplicate]
I am trying to get the latitude and longitude from the Google Geofencing API when using an address. I want to get the results in a JSON form and using the latitude and longitude from that. I have ...
1
vote
4
answers
3k
views
Google Geocoding API no longer displays localities every time
I'm a french developer and I have question about GMAP Geocoding API.
I'm on a new website work, which use this API.
The Geocoding API is used to get geocoded boundaries of french cities when user ...
0
votes
1
answer
602
views
Google Map geocoding is not validating the correct address
I have correct address
700 Bay Rd
Redwood City
CA 94063
United States
But google map geocoding is not returning result for this address, I am using the url (removed the api key for here only):
https:...
2
votes
1
answer
73
views
AFNetworking get json from Google Geocode API is incomplete
Is it a bug of AFNetworking or googleapi? I only get partial json result. And if I try it on Chrome, it works fine.
NSString *urlstring = [NSString stringWithFormat:@"http://maps.googleapis.com/...
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
1
answer
235
views
Google reverse geocache API: Make lat & long from JSON a variable
I am using the NPM Geocoder to convert locations to lat and longitude. However I am not sure how to pull the lat and long from the output.
The JSON is below and I want to make what's in line 59 ...
0
votes
2
answers
265
views
How to use geocoding API (JSON) in android?
I'm new to using json data and am confused with how to get what I want from this geocoding data. What I'm trying to do is get the name of a city and state with the user's latitude and longitude ...
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() {
...