{"id":5505,"date":"2021-09-23T08:00:20","date_gmt":"2021-09-23T08:00:20","guid":{"rendered":"https:\/\/www.folio3.com\/mobile\/?p=5505"},"modified":"2021-09-23T08:11:42","modified_gmt":"2021-09-23T08:11:42","slug":"what-is-google-maps-geometry-library-how-it-works","status":"publish","type":"post","link":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/","title":{"rendered":"What is Google Maps Geometry Library &#038; How it Works?"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>The earth is round, the map is flat<\/strong><\/h3>\n\n\n\n<p>When calculating the distance between two latitudes and longitudes we need to take the fact that maps are flat, however, the Earth is three-dimensional (round) and is approximated as a sphere.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/7NcKZKlb1RuxEiCA1MoQjYiFOGWYj6AVjRP5-VxgnTUH12gvaY9ruAaMeRzFwl3etyA9KZ98vAME-Mb23cBmYrnd2P5a-JpnNiHzHJcUQ7jl73tWI7Gmyaonv9YHEAYQq-TZioNK=s0\" alt=\"Map\"\/><\/figure>\n\n\n\n<p>The black line is the shortest path possible but when plotting on flat map it will look like an arc (the red line). Therefore calculating distance between two coordinates needs to use very advanced mathematics.<\/p>\n\n\n\n<p>Fortunately, with Google Maps API 3 libraries, Google Map offers a Geometry library which makes it very simple to calculate distance.<\/p>\n\n\n\n<p>Google Maps geometry library provides functions for the computation of geometric data on the surface of the earth. All it requires is to call the <code>computeDistanceBetween()<\/code> function passing it two <code>LatLng<\/code> objects.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Loading the Maps JavaScript API<\/strong><\/h4>\n\n\n\n<p>http:\/\/maps.google.com\/maps\/api\/js?libraries=geometry&#038;sensor=true&#038;key=YOUR_API_KEY<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Geometry Library Namespaces<\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li>google.maps.geometry.spherical<\/li><\/ul>\n\n\n\n<p>Contains spherical geometry utilities allowing you to compute angles, distances &amp; areas from coordinates (latitudes and longitudes).<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>google.maps.geometry.encoding<\/li><\/ul>\n\n\n\n<p>Contains utilities for encoding and decoding paths for polylines and polygons. Useful to compress bulky list of coordintes.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Calculating Distance<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>var location1 = new google.maps.LatLng(38.715, -74.002);\nvar location2 = new google.maps.LatLng(41.506, -0.119);\nvar distance = google.maps.geometry.spherical.computeDistanceBetween(location1, location2);<\/code><\/pre>\n\n\n\n<p>Results are returned in meters.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Computing Heading<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>var location1 = new google.maps.LatLng(38.715, -74.002);\nvar location2 = new google.maps.LatLng(41.506, -0.119);\nconst heading = google.maps.geometry.spherical.computeHeading(\n    location1,\n    location2\n  );<\/code><\/pre>\n\n\n\n<p>Results are returned in degrees from the north.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Calculating Area<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>var location1 = new google.maps.LatLng(38.715, -74.002);\nvar location2 = new google.maps.LatLng(41.506, -0.119);\nvar location3 = new google.maps.LatLng(20.916, -43.251);\nvar area = google.maps.geometry.spherical.computeArea(&#91;location1, location2, location3]);<\/code><\/pre>\n\n\n\n<p>Code above will calculate the area of a triangle between three locations provided to computeArea()<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h4>\n\n\n\n<p>Calculating area, heading and distances on geo coordinates can be tricky and may require advanced mathematics, but with the help of the Google Maps Geometry Library it\u2019s really simple. Thanks for reading.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The earth is round, the map is flat When calculating the distance between two latitudes and longitudes we need to take the fact that maps are flat, however, the Earth is three-dimensional (round) and is approximated as a sphere. The black line is the shortest path possible but when plotting on flat map it will &hellip; <a href=\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;What is Google Maps Geometry Library &#038; How it Works?&#8221;<\/span><\/a><\/p>\n","protected":false},"author":9,"featured_media":5499,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-5505","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Google Maps Geometry Library &amp; How it Works? - Mobile App Development Services<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Google Maps Geometry Library &amp; How it Works? - Mobile App Development Services\" \/>\n<meta property=\"og:description\" content=\"The earth is round, the map is flat When calculating the distance between two latitudes and longitudes we need to take the fact that maps are flat, however, the Earth is three-dimensional (round) and is approximated as a sphere. The black line is the shortest path possible but when plotting on flat map it will &hellip; Continue reading &quot;What is Google Maps Geometry Library &#038; How it Works?&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\" \/>\n<meta property=\"og:site_name\" content=\"Mobile App Development Services\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-23T08:00:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-23T08:11:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1707\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"msaqlain\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"msaqlain\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\"},\"author\":{\"name\":\"msaqlain\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/d7e0ef02800a3f681aaafbd99d7a1c73\"},\"headline\":\"What is Google Maps Geometry Library &#038; How it Works?\",\"datePublished\":\"2021-09-23T08:00:20+00:00\",\"dateModified\":\"2021-09-23T08:11:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\"},\"wordCount\":269,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\",\"url\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\",\"name\":\"What is Google Maps Geometry Library & How it Works? - Mobile App Development Services\",\"isPartOf\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg\",\"datePublished\":\"2021-09-23T08:00:20+00:00\",\"dateModified\":\"2021-09-23T08:11:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage\",\"url\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg\",\"contentUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg\",\"width\":2560,\"height\":1707,\"caption\":\"Man looking for route on map in mobile app. Geolocation, bus stop, direction. Flat vector illustration. Navigation concept can be used for presentations, banner, website design, landing web page\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.folio3.com\/mobile\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Google Maps Geometry Library &#038; How it Works?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#website\",\"url\":\"https:\/\/www.folio3.com\/mobile\/\",\"name\":\"Mobile App Development Services\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.folio3.com\/mobile\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#organization\",\"name\":\"Mobile App Development Services\",\"url\":\"https:\/\/www.folio3.com\/mobile\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png\",\"contentUrl\":\"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png\",\"width\":210,\"height\":50,\"caption\":\"Mobile App Development Services\"},\"image\":{\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/d7e0ef02800a3f681aaafbd99d7a1c73\",\"name\":\"msaqlain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b06cfd7df7ee148f3c3b752c732984c8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b06cfd7df7ee148f3c3b752c732984c8?s=96&d=mm&r=g\",\"caption\":\"msaqlain\"},\"description\":\"A hardworking and dedicated individual, determined on the road to success, ever ready to take on challenges and accomplish what I set out to achieve.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/msaqlain\/\",\"noc\"],\"url\":\"https:\/\/www.folio3.com\/mobile\/blog\/author\/msaqlain\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Google Maps Geometry Library & How it Works? - Mobile App Development Services","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:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/","og_locale":"en_US","og_type":"article","og_title":"What is Google Maps Geometry Library & How it Works? - Mobile App Development Services","og_description":"The earth is round, the map is flat When calculating the distance between two latitudes and longitudes we need to take the fact that maps are flat, however, the Earth is three-dimensional (round) and is approximated as a sphere. The black line is the shortest path possible but when plotting on flat map it will &hellip; Continue reading \"What is Google Maps Geometry Library &#038; How it Works?\"","og_url":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/","og_site_name":"Mobile App Development Services","article_published_time":"2021-09-23T08:00:20+00:00","article_modified_time":"2021-09-23T08:11:42+00:00","og_image":[{"width":2560,"height":1707,"url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg","type":"image\/jpeg"}],"author":"msaqlain","twitter_card":"summary_large_image","twitter_misc":{"Written by":"msaqlain","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#article","isPartOf":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/"},"author":{"name":"msaqlain","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/d7e0ef02800a3f681aaafbd99d7a1c73"},"headline":"What is Google Maps Geometry Library &#038; How it Works?","datePublished":"2021-09-23T08:00:20+00:00","dateModified":"2021-09-23T08:11:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/"},"wordCount":269,"commentCount":0,"publisher":{"@id":"https:\/\/www.folio3.com\/mobile\/#organization"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage"},"thumbnailUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/","url":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/","name":"What is Google Maps Geometry Library & How it Works? - Mobile App Development Services","isPartOf":{"@id":"https:\/\/www.folio3.com\/mobile\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage"},"thumbnailUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg","datePublished":"2021-09-23T08:00:20+00:00","dateModified":"2021-09-23T08:11:42+00:00","breadcrumb":{"@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#primaryimage","url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg","contentUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2021\/09\/10891-scaled.jpg","width":2560,"height":1707,"caption":"Man looking for route on map in mobile app. Geolocation, bus stop, direction. Flat vector illustration. Navigation concept can be used for presentations, banner, website design, landing web page"},{"@type":"BreadcrumbList","@id":"https:\/\/www.folio3.com\/mobile\/blog\/what-is-google-maps-geometry-library-how-it-works\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.folio3.com\/mobile\/"},{"@type":"ListItem","position":2,"name":"What is Google Maps Geometry Library &#038; How it Works?"}]},{"@type":"WebSite","@id":"https:\/\/www.folio3.com\/mobile\/#website","url":"https:\/\/www.folio3.com\/mobile\/","name":"Mobile App Development Services","description":"","publisher":{"@id":"https:\/\/www.folio3.com\/mobile\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.folio3.com\/mobile\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.folio3.com\/mobile\/#organization","name":"Mobile App Development Services","url":"https:\/\/www.folio3.com\/mobile\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/","url":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png","contentUrl":"https:\/\/www.folio3.com\/mobile\/wp-content\/uploads\/2020\/12\/folio3-mobile.png","width":210,"height":50,"caption":"Mobile App Development Services"},"image":{"@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/d7e0ef02800a3f681aaafbd99d7a1c73","name":"msaqlain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.folio3.com\/mobile\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b06cfd7df7ee148f3c3b752c732984c8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b06cfd7df7ee148f3c3b752c732984c8?s=96&d=mm&r=g","caption":"msaqlain"},"description":"A hardworking and dedicated individual, determined on the road to success, ever ready to take on challenges and accomplish what I set out to achieve.","sameAs":["https:\/\/www.linkedin.com\/in\/msaqlain\/","noc"],"url":"https:\/\/www.folio3.com\/mobile\/blog\/author\/msaqlain\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/5505"}],"collection":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/comments?post=5505"}],"version-history":[{"count":7,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/5505\/revisions"}],"predecessor-version":[{"id":5518,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/posts\/5505\/revisions\/5518"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/media\/5499"}],"wp:attachment":[{"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/media?parent=5505"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/categories?post=5505"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.folio3.com\/mobile\/wp-json\/wp\/v2\/tags?post=5505"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}