{"id":36657,"date":"2016-06-27T13:21:33","date_gmt":"2016-06-27T07:51:33","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=36657"},"modified":"2016-06-27T13:21:33","modified_gmt":"2016-06-27T07:51:33","slug":"getting-started-with-leaflet-maps","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/","title":{"rendered":"Getting started with Leaflet maps"},"content":{"rendered":"<p>Leaflet is a open source Javascript library that can be used to create interactive maps. It comes\u00a0with all\u00a0mapping features that most of us need in any project like adding markers, \u00a0popups, vector layers, zooming, selecting lat-lng of a place and much\u00a0more.<\/p>\n<p>In this blog, we will learn how to get started with Leaflet maps and we will also do some stuffs like adding markers\u00a0and\u00a0popups.<\/p>\n<p><strong>Setting up your page<\/strong><\/p>\n<ul>\n<li>In the head section of your html page include\u00a0Leaflet CSS file.\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n       &lt;link rel=&quot;stylesheet&quot; href=&quot;http:\/\/cdn.leafletjs.com\/leaflet\/v0.7.7\/leaflet.css&quot; \/&gt;<br \/>\n      [\/code]<\/p>\n<\/li>\n<\/ul>\n<ul>\n<li>Include\u00a0Leaflet \u00a0JavaScript file.\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n      &lt;script src=&quot;http:\/\/cdn.leafletjs.com\/leaflet\/v0.7.7\/leaflet.js&quot;&gt;&lt;\/script&gt;<br \/>\n      [\/code]<\/p>\n<\/li>\n<\/ul>\n<ul>\n<li>Add\u00a0div Element with some Id in which you want to render your map.\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n      &lt;div id=&quot;myMap&quot;&gt;&lt;\/div&gt;<br \/>\n      [\/code]<\/p>\n<\/li>\n<\/ul>\n<ul>\n<li>Make sure your\u00a0map container has a defined height. You can use CSS like this:\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n      #myMap { height: 250px; }<br \/>\n      [\/code]<\/p>\n<\/li>\n<\/ul>\n<p>Now, let&#8217;s start with initializing the map.<\/p>\n<p><strong>Initializing the map<\/strong><\/p>\n<p>First, initialize your map and set its view to some geographical coordinates and a zoom level.<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\nvar map = L.map(&#8216;myMap&#8217;).setView([51.505, -0.09], 13);\/\/\u00a0center of London with zoom level 13[\/code]<\/p>\n<p>Next, add a tile layer to map, in this case OpenStreetMap tile layer. Adding a tile layer involves setting the URL template for the tile images and the attribtution :<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\nL.tileLayer(&#8216;http:\/\/{s}.tile.osm.org\/{z}\/{x}\/{y}.png&#8217;, {<br \/>\n    attribution: &#8216;&amp;copy; &lt;a href=&quot;http:\/\/osm.org\/copyright&quot;&gt;OpenStreetMap&lt;\/a&gt; contributors&#8217;<br \/>\n}).addTo(map);<br \/>\n[\/code]<\/p>\n<p>Make sure all these lines of code is\u00a0called\u00a0after the div and the javascript file leaflet.js inclusion. Now, map will get rendered inside your map container.<\/p>\n<p><strong>Adding marker<\/strong><\/p>\n<p>Marker can easily be added by setting lat-lng.\u00a0Let\u2019s add a marker:<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n     var marker = L.marker([51.5, -0.09]).addTo(map);<br \/>\n      [\/code]<\/p>\n<p><strong>Adding popups<\/strong><\/p>\n<p>Popups are used when you want to add some additional information with an object on the map. Attaching popup to objects is very simple in Leaflet:<\/p>\n<p>[code language=&#8221;javascript&#8221;]<br \/>\n    marker.bindPopup(&quot;&lt;strong&gt;Hello world!&lt;\/strong&gt;&lt;br&gt;I am a popup.&quot;).openPopup();<br \/>\n      [\/code]<\/p>\n<p>After, doing all the above stuffs your final map will look something like this:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-36753\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/06\/leaftlet.png\" alt=\"map\" width=\"1045\" height=\"401\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Leaflet is a open source Javascript library that can be used to create interactive maps. It comes\u00a0with all\u00a0mapping features that most of us need in any project like adding markers, \u00a0popups, vector layers, zooming, selecting lat-lng of a place and much\u00a0more. In this blog, we will learn how to get started with Leaflet maps and [&hellip;]<\/p>\n","protected":false},"author":229,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":12,"footnotes":""},"categories":[1],"tags":[3616,3614,3615,3626],"class_list":["post-36657","post","type-post","status-publish","format-standard","hentry","category-technology","tag-interactive-maps","tag-javascript-maps","tag-leaflet-maps","tag-maps"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Arpit Jain\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Getting started with Leaflet maps | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Getting started with Leaflet maps | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#article\",\"name\":\"Getting started with Leaflet maps | TO THE NEW Blog\",\"headline\":\"Getting started with Leaflet maps\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-jain\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/06\\\/leaftlet.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#articleImage\"},\"datePublished\":\"2016-06-27T13:21:33+05:30\",\"dateModified\":\"2016-06-27T13:21:33+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#webpage\"},\"articleSection\":\"Technology, interactive maps, javascript maps, leaflet maps, maps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#listItem\",\"name\":\"Getting started with Leaflet maps\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#listItem\",\"position\":3,\"name\":\"Getting started with Leaflet maps\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-jain\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-jain\\\/\",\"name\":\"Arpit Jain\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/2bcb1c02-230c-4658-8c49-b16b38ee4577_1311-Arpit-Jain-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Arpit Jain\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/\",\"name\":\"Getting started with Leaflet maps | TO THE NEW Blog\",\"description\":\"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/getting-started-with-leaflet-maps\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-jain\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/arpit-jain\\\/#author\"},\"datePublished\":\"2016-06-27T13:21:33+05:30\",\"dateModified\":\"2016-06-27T13:21:33+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Getting started with Leaflet maps | TO THE NEW Blog","description":"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.","canonical_url":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#article","name":"Getting started with Leaflet maps | TO THE NEW Blog","headline":"Getting started with Leaflet maps","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/arpit-jain\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/06\/leaftlet.png","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#articleImage"},"datePublished":"2016-06-27T13:21:33+05:30","dateModified":"2016-06-27T13:21:33+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#webpage"},"articleSection":"Technology, interactive maps, javascript maps, leaflet maps, maps"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#listItem","name":"Getting started with Leaflet maps"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#listItem","position":3,"name":"Getting started with Leaflet maps","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/arpit-jain\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/arpit-jain\/","name":"Arpit Jain","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/2bcb1c02-230c-4658-8c49-b16b38ee4577_1311-Arpit-Jain-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Arpit Jain"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/","name":"Getting started with Leaflet maps | TO THE NEW Blog","description":"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/arpit-jain\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/arpit-jain\/#author"},"datePublished":"2016-06-27T13:21:33+05:30","dateModified":"2016-06-27T13:21:33+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Getting started with Leaflet maps | TO THE NEW Blog","og:description":"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.","og:url":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Getting started with Leaflet maps | TO THE NEW Blog","twitter:description":"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"36657","title":"Getting started with Leaflet maps | #site_title","description":"The purpose of this blog is to provide a brief introduction of leaflet maps and how to use them.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 14:40:27","updated":"2024-02-29 09:22:53","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGetting started with Leaflet maps\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Getting started with Leaflet maps","link":"https:\/\/tothenewco.pro\/blog\/getting-started-with-leaflet-maps\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/36657","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/229"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=36657"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/36657\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=36657"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=36657"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=36657"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}