I want to add my own place using Google places API in android with some description. Now i want to add vicinity, URL, Website, international_phone_number etc in the string format below but i am unable to get it plz help me:
String placeJSON =
"{"+
"\"location\": {" +
"\"lat\": " + lat + "," +
"\"lng\": " + lng +
"}," +
"\"accuracy\":50.0," +
"\"name\": \"" + name + "\"," +
"\"types\": [\"" + type + "\"]," +
"\"vicinity\":\""+ DescriptionDialog.vic +"\","+
"\"formatted_address\":\""+ DescriptionDialog.formtd_address +"\","+
"\"formatted_phone_number\":\""+ DescriptionDialog.formtd_phone_number +"\","+
"\"url\":\""+ DescriptionDialog.myUrl +"\","+
"\"website\":\""+ DescriptionDialog.myWebsite +"\","+
"\"language\": \"en\" " +"}";