1
vote
1answer
25 views

JSON exception to parse photo_refrence from Google places api

I have made a json android application, to show the reference of the photos, in a list view, but it gives me an error my code is\ package com.example.jsonapp; import java.util.ArrayList; import ...
0
votes
0answers
22 views

I am trying to add a new place to google places library but cant find the error in my code. In nearby search the added place dont show

This code doesn't show any error , however it doesn't add to the google places library.When i search for nearby places , this newly added place doesn't appear. Please help. Thank you !! public void ...
0
votes
2answers
75 views

JSON from Google Places

Here I want to get the types of a specific place using Google Places API, but Im obviously having a huge problem with how to get the desired value of "types" from the JSON format. here is what I ...
0
votes
1answer
139 views

Parse the data from Google Place api response in (Json format)

How am i suppose to store the Hotel name and location from the response provided by google place api in PHP array. If my search string is restaurant in New York. The response of the api is in json ...
0
votes
0answers
43 views

Mapping locations using Radar Search with geospatial data generated from MS Access dynamic query (VBA)

I am looking to map multiple locations (~1-100) that are generated from a dynamic query based on user input in MS Access 2010 (Visual Basic). The known parameters for each location are: place name, ...
3
votes
1answer
121 views

How to get the unique identifier for a city through the Google Places Autocomplete API performing the search in multiple languages​​?

I need to get a unique identifier for the name of a city when that same city is again sought in another language API to find this place same city. Example: I do a search via the Google API ...
1
vote
2answers
71 views

Google Places API missing ID and Referance in response

I am using the Google Places API with the following search string ...
0
votes
0answers
40 views

Permissions not showing when installing app

I get a json exception end of input at character 0 while trying to access the Google Places API (the generated URL is ok, the key is ok). In the manifest I have set permissions ACCESS_FINE_LOCATIONS ...
0
votes
1answer
122 views

Adding location detail to Google Places via JSON

I am adding locations to my Android application which is utilizing the Google Places API and when I run a search for these places I am getting the Name, latitude and longitude back but I am unable to ...
0
votes
1answer
130 views

How to add website and address with google places api?

i am writing an application that will allow businesses to do SEO and i am using the google places api to add new place when the client has activated their profile. The api works great, but i am ...
1
vote
1answer
230 views

Google places api parsing problems

I am using google places api and in the parsing i am using json but this line JsonHttpParser parser = new JsonHttpParser(new JacksonFactory()); request.addParser(parser); is ...
1
vote
0answers
111 views

View Selected Address from autocomplete textview on Mapview

Please, can anyone help me?, I'm really desperate I'm developing a android application to view a certain address from an autocomplete list on a mapview using the Google Places API,and when the user ...
0
votes
1answer
57 views

which JSON tags are guaranteed in the “Google Places” API?

Is there a list of JSON objects that will certainly be present when working with the Google Places API service? I assume "geometry" , "location", and "name" will always be returned in the JSON page, ...
0
votes
0answers
126 views

Google places API, no peer certificate

I was using the following with google places API and it was working fine for retrieving json for nearby places, but recently I've been getting a 'no peer certificate' error on HttpGet connection (in ...
1
vote
3answers
146 views

how do i figure out how to debug this? HttpResponse

I'm trying to make a json object from the result of the googleplaces api. But one line of code is causing me alot of problems. My question is how the heck do i find what the issue is. I can't seem ...
1
vote
2answers
327 views

Android - Trying to implement Google Places API

I have never used Google Places before and thought it would be time to do so. I've followed this tutorial: http://www.androidhive.info/2012/08/android-working-with-google-places-and-maps-tutorial/ My ...
1
vote
1answer
455 views

-[NSURL _CFURLRequest]: unrecognized selector sent to instance

i am using JSONKit in my program to parse google places api but my app crashes with the following error -[NSURL _CFURLRequest]: unrecognized selector sent to instance NSString* URL = [NSString ...
-1
votes
2answers
169 views

steps in using google places api with android app

Please help me with connecting the google places api with my android app. This app searches for restaurents based on types of food such as indian, chinese, contenetal etc and gives the results of the ...
-1
votes
3answers
298 views

How to convert a JSON object (returns from google places API) to a Java object

Google places API returns a JSON when it requested for a place under food category which includes the details of several places. I want to create an object array where each object contains details of ...
0
votes
2answers
494 views

How do i add Google Places API results to map overlay?

I'm a noob trying to develop a location based app with google places. I can add my current location the ovelay but i can't figure out what i am doing wrong so I can add places api results to my ...
0
votes
2answers
2k views

Trying to use Google Places API with JQuery's getJSON function

This is probably very basic but I'm trying to test the Google Places API. I'm going through the documentation and using some of the examples they provide. I'm trying to use the JQuery getJSON function ...
0
votes
2answers
624 views

Conversion to Dalvik format failed with error 1 when using google-api-java-client library with andriod

I'm following a sample to learn about the google-api-java-client library. I've downloaded the jars and added them to my libs folder, in my project. During compile time, there are no errors, but when I ...
0
votes
0answers
483 views

Android Parsing Google Places JSON data using location-based latitude & longitude

I'm trying to get the name of a nearby airport to display using Google Places. I can get the app to work if I use defined values for latitude and longitude, but using a LocationListener and ...
1
vote
2answers
928 views

Parsing Google Places JSON data in Android?

I'm trying to parse Google Places JSON data in Android. I know the URL I'm passing in works (but I took my key out of the below code). I can get the JSON data to display in a TextView, but now I want ...
0
votes
2answers
334 views

How to get location from Google Place API JSON (android)

I have type below to get Location array to get the latitude, but it can not work. Is it any mistake in my code? And i can get the result, but i cannot get geometry. JSONTokener jsonParser = new ...
1
vote
1answer
147 views

Missing Google JSON details

Referencing this https://developers.google.com/maps/documentation/places/#PlaceDetails I was expecting the JSON result to always hold all of the address_components details. However, one of my searches ...
1
vote
1answer
463 views

Google Places API Search By Keyword “Wakeboards” Returning Law Firm Results?

I'm trying to do a query via the Places API to find places related to the term wakeboards near Washington, DC. However, the results I'm getting back show law firms. Here's the query I'm making: ...
1
vote
1answer
502 views

JSON library problems using both Facebook API and Google Places API in the same app

I'm encountering a problem with the JSON library using both Facebook API and Google Places API in the same app. I've tried them both independently and they work fine. The problem is though that I now ...
0
votes
1answer
953 views

sample code for google places api in android

can anyone please tell me how to use google places api in android. I am developing this application in eclipse where i need to find the nearest petrol stations and garages near my area. I went through ...
2
votes
3answers
813 views

Getting JSON file from Google Places API

I am trying to use the Places API and I was initially trying to use $.ajax from jQuery but I kept getting an unexpected token error on the first element of the file. But I realized then that you can't ...