Map/
1{
2 "results": [
3 {
4 "address_components": [
5 {
6 "long_name": "1600",
7 "short_name": "1600",
8 "types": [
9 "street_number"
10 ]
11 },
12 {
13 "long_name": "Amphitheatre Pkwy",
14 "short_name": "Amphitheatre Pkwy",
15 "types": [
16 "route"
17 ]
18 },
19 {
20 "long_name": "Mountain View",
21 "short_name": "Mountain View",
22 "types": [
23 "locality",
24 "political"
25 ]
26 },
27 {
28 "long_name": "Santa Clara County",
29 "short_name": "Santa Clara County",
30 "types": [
31 "administrative_area_level_2",
32 "political"
33 ]
34 },
35 {
36 "long_name": "California",
37 "short_name": "CA",
38 "types": [
39 "administrative_area_level_1",
40 "political"
41 ]
42 },
43 {
44 "long_name": "United States",
45 "short_name": "US",
46 "types": [
47 "country",
48 "political"
49 ]
50 },
51 {
52 "long_name": "94043",
53 "short_name": "94043",
54 "types": [
55 "postal_code"
56 ]
57 }
58 ],
59 "formatted_address": "1600 Amphitheatre Parkway, Mountain View, CA 94043, USA",
60 "geometry": {
61 "location": {
62 "lat": 37.4224764,
63 "lng": -122.0842499
64 },
65 "location_type": "ROOFTOP",
66 "viewport": {
67 "northeast": {
68 "lat": 37.4238253802915,
69 "lng": -122.0829009197085
70 },
71 "southwest": {
72 "lat": 37.4211274197085,
73 "lng": -122.0855988802915
74 }
75 }
76 },
77 "place_id": "ChIJ2eUgeAK6j4ARbn5u_wAGqWA",
78 "types": [
79 "street_address"
80 ]
81 }
82 ],
83 "status": "OK"
84}
The Google Maps Geocoding Response Json is an example response of Google Map’s Geocoding API which is a service that provides geocoding and reverse geocoding of addresses.
This Json example shows a response from the Geocoding API for the address "1600 Amphitheatre Parkway, Mountain View, CA 94043, USA".
The response includes information about the address components, formatted address, and the location geometry (latitude and longitude). The status field indicates whether the API call was successful or not.
This example shows a response from the Geocoding API for the address "1600 Amphitheatre Parkway, Mountain View, CA 94043, USA".
The Json response includes information about the address components, formatted address, and the location geometry (latitude and longitude). The status field indicates whether the API call was successful or not.
Developed by
Episyche Technologies
Copyright © 2022-2024 Episyche Technologies. All rights reserved.
Based on JSON CRACK, by AykutSarac