{"id":1018,"date":"2022-09-26T06:52:10","date_gmt":"2022-09-26T05:52:10","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1018"},"modified":"2022-09-26T06:52:12","modified_gmt":"2022-09-26T05:52:12","slug":"how-to-use-google-places-autocomplete-in-react-native","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/","title":{"rendered":"How to Use Google Places AutoComplete in React Native"},"content":{"rendered":"\n<p>The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available on Google Maps.<\/p>\n\n\n\n<p>In this tutorial, we are going to see how we can use the Google Places Autocomplete feature in our React Native application.<\/p>\n\n\n\n<p>Let&#8217;s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-obtain-an-api-key-from-google-cloud-console\">1. Obtain an API key from Google Cloud Console<\/h2>\n\n\n\n<p>First you need to add billing to your Google Cloud Console account and enable Geocoding.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"324\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-26-at-06.26.32-1024x324.png\" alt=\"\" class=\"wp-image-1019\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-26-at-06.26.32-1024x324.png 1024w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-26-at-06.26.32-300x95.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-26-at-06.26.32-768x243.png 768w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-26-at-06.26.32.png 1440w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-install-the-google-places-autocomplete-dependency\">2. Install the Google Places AutoComplete dependency<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.npmjs.com\/package\/react-native-google-places-autocomplete\" target=\"_blank\" rel=\"noreferrer noopener\">Read more about the Google AutoComplete dependency<\/a> <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">yarn add react-native-google-places-autocomplete<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-add-code-for-the-google-api\">3. Add code for the Google API<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"jsx\" class=\"language-jsx\">&lt;GooglePlacesAutocomplete\n    placeholder='Search location'\n    returnKeyType={'default'}\n    fetchDetails={true}\n    currentLocation = {true}\n    isRowScrollable={true}\n    keepResultsAfterBlur={false}\n    enablePoweredByContainer = { false }\n    styles={{\n      textInputContainer: {\n        marginTop: 0,\n      },\n      textInput: {\n        height: 45,\n        color: 'black',\n        fontSize: 16,\n        backgroundColor: '#ddd'\n      },\n      predefinedPlacesDescription: {\n        color: '#1faadb',\n      },\n      listView: {\n        position: 'relative',\n        zIndex: 3,\n        marginTop: 0,\n        padding: 0\n      },\n      row: {\n      backgroundColor: '#FFFFFF',\n      height: 100,\n      flexDirection: 'row',\n      },\n      separator: {\n      height: 0.5,\n      backgroundColor: '#c8c7cc',\n      },\n      description: {},\n      loader: {\n      flexDirection: 'row',\n      justifyContent: 'flex-end',\n      height: 20,\n      },\n    }}\n\n    onPress={(data, details) => {\n      \/\/ 'details' is provided when fetchDetails = true\n      \/\/ console.warn(details);\n    }}\n    query={{\n      key: API_KEY,\n      language: 'en',\n      components: 'country:us'\n    }}\n    \/><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-result\">Result:<\/h2>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"1080\" style=\"aspect-ratio: 1080 \/ 1080;\" width=\"1080\" controls src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/InShot_20220926_064159541.mp4\"><\/video><\/figure>\n\n\n\n<p>Did it work out for you? Let me know in the comments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-don-t-build-mobile-apps-from-scratch\"><a href=\"https:\/\/origamisuite.dev\" target=\"_blank\" rel=\"noreferrer noopener\">Don&#8217;t build mobile apps from scratch<\/a><\/h2>\n","protected":false},"excerpt":{"rendered":"<p>The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are<\/p>\n","protected":false},"author":1,"featured_media":983,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[],"class_list":["post-1018","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Use Google Places AutoComplete in React Native<\/title>\n<meta name=\"description\" content=\"The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Google Places AutoComplete in React Native\" \/>\n<meta property=\"og:description\" content=\"The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-26T05:52:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-26T05:52:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"553\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"How to Use Google Places AutoComplete in React Native\",\"datePublished\":\"2022-09-26T05:52:10+00:00\",\"dateModified\":\"2022-09-26T05:52:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/\"},\"wordCount\":117,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/google-maps-satellite.png\",\"articleSection\":[\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/\",\"name\":\"How to Use Google Places AutoComplete in React Native\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/google-maps-satellite.png\",\"datePublished\":\"2022-09-26T05:52:10+00:00\",\"dateModified\":\"2022-09-26T05:52:12+00:00\",\"description\":\"The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/google-maps-satellite.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/google-maps-satellite.png\",\"width\":1200,\"height\":553,\"caption\":\"Google Places React Native\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-use-google-places-autocomplete-in-react-native\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use Google Places AutoComplete in React Native\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Google Places AutoComplete in React Native","description":"The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Google Places AutoComplete in React Native","og_description":"The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available","og_url":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2022-09-26T05:52:10+00:00","article_modified_time":"2022-09-26T05:52:12+00:00","og_image":[{"width":1200,"height":553,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"How to Use Google Places AutoComplete in React Native","datePublished":"2022-09-26T05:52:10+00:00","dateModified":"2022-09-26T05:52:12+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/"},"wordCount":117,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png","articleSection":["softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/","url":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/","name":"How to Use Google Places AutoComplete in React Native","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png","datePublished":"2022-09-26T05:52:10+00:00","dateModified":"2022-09-26T05:52:12+00:00","description":"The Google Places Autocomplete feature in mobile software development is useful for searching for verified locations that are available","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png","width":1200,"height":553,"caption":"Google Places React Native"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-use-google-places-autocomplete-in-react-native\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"How to Use Google Places AutoComplete in React Native"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/08\/google-maps-satellite.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1018","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1018"}],"version-history":[{"count":1,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1018\/revisions"}],"predecessor-version":[{"id":1021,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1018\/revisions\/1021"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/983"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1018"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1018"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}