{"id":15411,"date":"2022-10-11T12:35:03","date_gmt":"2022-10-11T07:05:03","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/"},"modified":"2022-10-11T12:35:03","modified_gmt":"2022-10-11T07:05:03","slug":"solved-combine-geocode-with-marker-clustering","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/","title":{"rendered":"[Solved] Combine Geocode with marker clustering"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-44788217\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"44788217\" data-parentid=\"44787594\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>You are creating a new <code>MarkerCluster<\/code> every time you create a marker.  Create it once, add <strong>all<\/strong> the markers to the same <code>MarkerClusterer<\/code> object.<\/p>\n<pre><code>function initMap() {\n  var map = new google.maps.Map(document.getElementById('map'), {\n    center: new google.maps.LatLng(43.6191, -113.9772),\n    zoom: 8\n  });\n  var infoWindow = new google.maps.InfoWindow;\n\n  \/\/ ********************************************************************************\n  \/\/ ** move the markers array and the marker clusterer here, outside of the loop. **\n  \/\/ ********************************************************************************\n\n  var markers = [];\n  var markerCluster = new MarkerClusterer(map, [], {\n    imagePath: \"https:\/\/cdn.rawgit.com\/googlemaps\/js-marker-clusterer\/gh-pages\/images\/m\"\n  });\n  downloadUrl('http:\/\/map.northwestdatacom.com\/xml.php', function(data) {\n    var xml = data.responseXML;\n    var xmlmarker = xml.documentElement.getElementsByTagName('marker');\n    Array.prototype.forEach.call(xmlmarker, function(markerElem) {\n\n      var id = markerElem.getAttribute('id');\n      var name = markerElem.getAttribute('name');\n      var phone = markerElem.getAttribute('phone');\n      var email = markerElem.getAttribute('email');\n      var host = markerElem.getAttribute('host');\n      var type = markerElem.getAttribute('service');\n      var address = markerElem.getAttribute('address');\n\n      var infowincontent = document.createElement('div');\n      var strong = document.createElement('strong');\n      strong.textContent = name;\n      infowincontent.appendChild(strong);\n      infowincontent.appendChild(document.createElement('br'));\n      var text = document.createElement('text');\n      text.textContent = address;\n      infowincontent.appendChild(text);\n      var icon = customLabel[type] || {};\n\n      var geocoder = new google.maps.Geocoder();\n      geocoder.geocode({\n        'address': address\n      }, function(results, status) {\n        var locations = results[0].geometry.location;\n        var marker = new google.maps.Marker({\n          position: locations,\n          label: icon.label\n        });\n\n        markers.push(marker);\n        markerCluster.addMarker(marker);\n      })\n    });\n  });\n}\n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/jsfiddle.net\/geocodezip\/ctjd5wc1\/\">proof of concept fiddle<\/a><\/p>\n<p><strong>code snippet:<\/strong><\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"true\" data-console=\"true\" data-babel=\"false\">\n<div class=\"snippet-code snippet-currently-hidden\">\n<pre class=\"snippet-code-css lang-css prettyprint-override\"><code>html,\r\nbody,\r\n#map {\r\n  height: 100%;\r\n  width: 100%;\r\n  margin: 0px;\r\n  padding: 0px\r\n}<\/code><\/pre>\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js\"&gt;&lt;\/script&gt;\r\n&lt;div id=\"map\"&gt;&lt;\/div&gt;\r\n&lt;script&gt;\r\n  var customLabel = {\r\n    residential: {\r\n      label: 'R'\r\n    },\r\n    commercial: {\r\n      label: 'C'\r\n    },\r\n    both: {\r\n      label: 'B'\r\n    }\r\n  };\r\n\r\n  function initMap() {\r\n    var map = new google.maps.Map(document.getElementById('map'), {\r\n      center: new google.maps.LatLng(43.6191, -113.9772),\r\n      zoom: 6\r\n    });\r\n    var infoWindow = new google.maps.InfoWindow;\r\n    var markers = [];\r\n    var markerCluster = new MarkerClusterer(map, [], {\r\n      imagePath: \"https:\/\/cdn.rawgit.com\/googlemaps\/js-marker-clusterer\/gh-pages\/images\/m\"\r\n    });\r\n    \/\/ downloadUrl('http:\/\/map.northwestdatacom.com\/xml.php', function(data) {\r\n    var xml = parseXml(xmlStr); \/\/ data.responseXML;\r\n    var xmlmarker = xml.documentElement.getElementsByTagName('marker');\r\n    Array.prototype.forEach.call(xmlmarker, function(markerElem) {\r\n\r\n      var id = markerElem.getAttribute('id');\r\n      var name = markerElem.getAttribute('name');\r\n      var phone = markerElem.getAttribute('phone');\r\n      var email = markerElem.getAttribute('email');\r\n      var host = markerElem.getAttribute('host');\r\n      var type = markerElem.getAttribute('service');\r\n      var address = markerElem.getAttribute('address');\r\n\r\n      var infowincontent = document.createElement('div');\r\n      var strong = document.createElement('strong');\r\n      strong.textContent = name;\r\n      infowincontent.appendChild(strong);\r\n      infowincontent.appendChild(document.createElement('br'));\r\n      var text = document.createElement('text');\r\n      text.textContent = address;\r\n      infowincontent.appendChild(text);\r\n      var icon = customLabel[type] || {};\r\n\r\n      var geocoder = new google.maps.Geocoder();\r\n      geocoder.geocode({\r\n        'address': address\r\n      }, function(results, status) {\r\n        var locations = results[0].geometry.location;\r\n        var marker = new google.maps.Marker({\r\n          position: locations,\r\n          label: icon.label\r\n        });\r\n\r\n        markers.push(marker);\r\n        markerCluster.addMarker(marker);\r\n      })\r\n    });\r\n    \/\/ });\r\n  }\r\n\r\n  function downloadUrl(url, callback) {\r\n    var request = window.ActiveXObject ?\r\n      new ActiveXObject('Microsoft.XMLHTTP') :\r\n      new XMLHttpRequest;\r\n    request.onreadystatechange = function() {\r\n      if (request.readyState == 4) {\r\n        request.onreadystatechange = doNothing;\r\n        callback(request, request.status);\r\n      }\r\n    };\r\n    request.open('GET', url, true);\r\n    request.send(null);\r\n  }\r\n\r\n  function doNothing() {}\r\n\r\n  function parseXml(str) {\r\n    if (window.ActiveXObject) {\r\n      var doc = new ActiveXObject('MicrosoftXMLDOM');\r\n      doc.loadXML(str);\r\n      return doc;\r\n    } else if (window.DOMParser) {\r\n      return (new DOMParser).parseFromString(str, 'text\/xml');\r\n    }\r\n  };\r\n  google.maps.event.addDomListener(window, \"load\", initMap);\r\n  var xmlStr=\"&lt;markers&gt;&lt;marker id=\"91\" name=\"marcos centeno\" phone=\"2083128603\" email=\"marcoscenteno89@gmail.com\" address=\"16111 17th st Heyburn 83336\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"90\" name=\"Nathan Rasmussen\" phone=\"123\" email=\"nathan@truckmaster.com\" address=\"290 west 125 south Idaho falls 83404\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"87\" name=\"LIZ SANZON\" phone=\"4564352410\" email=\"lizeth.sanzon@dynamitewireless.com\" address=\"20491 N Main ST, CAREY 83320\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"88\" name=\"Liz Sanzon\" phone=\"9674546465\" email=\"lizeth.sanzon@dynamitewireless.com\" address=\"244700 Ustick Rd, Wilder 83676\" service=\"commercial\" host=\"\"\/&gt;&lt;marker id=\"89\" name=\"Lizeth Sanzon\" phone=\"4564352410\" email=\"lizeth.sanzon@dynamitewireless.com\" address=\" 5870 Rock River Lane Kuna 83634\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"78\" name=\"Ryan Rustici\" phone=\"2087052118\" email=\"ryan.rustici@gmail.com\" address=\"11324 Interlaaken Dr SW Lakewood 98498\" service=\"both\" host=\"\"\/&gt;&lt;marker id=\"86\" name=\"Liz San\" phone=\"31546304501\" email=\"lizeth.sanzon@dynamitewireless.com\" address=\"283 n 2600 e Roberts ID\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"77\" name=\"Ryan Rustici\" phone=\"2085551212\" email=\"ryan@aol.com\" address=\"4035 Ross Ave Ammon 83406\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"84\" name=\"Marcos Centeno\" phone=\"2083128603\" email=\"marcoscenteno89@gmail.com\" address=\"785 Garfield Ave, 10 Idaho Falls 83401\" service=\"residential\" host=\"\"\/&gt;&lt;marker id=\"85\" name=\"Marcos Centeno\" phone=\"2083128603\" email=\"mc172000@yaho.com\" address=\"785 Garfield Ave, 10 Idaho Falls 83401\" service=\"residential\" host=\"199-33-218-234.cpe.safelink.net\"\/&gt;&lt;\/markers&gt;\";\r\n&lt;\/script&gt;\r\n&lt;script src=\"https:\/\/cdn.rawgit.com\/googlemaps\/js-marker-clusterer\/gh-pages\/src\/markerclusterer.js\"&gt;&lt;\/script&gt;<\/code><\/pre>\n<\/div>\n<\/div><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Combine Geocode with marker clustering <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] You are creating a new MarkerCluster every time you create a marker. Create it once, add all the markers to the same MarkerClusterer object. function initMap() { var map = new google.maps.Map(document.getElementById(&#8216;map&#8217;), { center: new google.maps.LatLng(43.6191, -113.9772), zoom: 8 }); var infoWindow = new google.maps.InfoWindow; \/\/ ******************************************************************************** \/\/ ** move the markers array and &#8230; <a title=\"[Solved] Combine Geocode with marker clustering\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\" aria-label=\"More on [Solved] Combine Geocode with marker clustering\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[3272,492,333,3979,341],"class_list":["post-15411","post","type-post","status-publish","format-standard","hentry","category-solved","tag-google-geocoding-api","tag-google-maps","tag-javascript","tag-markerclusterer","tag-sql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Combine Geocode with marker clustering - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Combine Geocode with marker clustering - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] You are creating a new MarkerCluster every time you create a marker. Create it once, add all the markers to the same MarkerClusterer object. function initMap() { var map = new google.maps.Map(document.getElementById(&#039;map&#039;), { center: new google.maps.LatLng(43.6191, -113.9772), zoom: 8 }); var infoWindow = new google.maps.InfoWindow; \/\/ ******************************************************************************** \/\/ ** move the markers array and ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-11T07:05:03+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Combine Geocode with marker clustering\",\"datePublished\":\"2022-10-11T07:05:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\"},\"wordCount\":42,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"google-geocoding-api\",\"google-maps\",\"javascript\",\"markerclusterer\",\"sql\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\",\"name\":\"[Solved] Combine Geocode with marker clustering - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-10-11T07:05:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Combine Geocode with marker clustering\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Combine Geocode with marker clustering - JassWeb","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:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Combine Geocode with marker clustering - JassWeb","og_description":"[ad_1] You are creating a new MarkerCluster every time you create a marker. Create it once, add all the markers to the same MarkerClusterer object. function initMap() { var map = new google.maps.Map(document.getElementById('map'), { center: new google.maps.LatLng(43.6191, -113.9772), zoom: 8 }); var infoWindow = new google.maps.InfoWindow; \/\/ ******************************************************************************** \/\/ ** move the markers array and ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/","og_site_name":"JassWeb","article_published_time":"2022-10-11T07:05:03+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Combine Geocode with marker clustering","datePublished":"2022-10-11T07:05:03+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/"},"wordCount":42,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["google-geocoding-api","google-maps","javascript","markerclusterer","sql"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/","url":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/","name":"[Solved] Combine Geocode with marker clustering - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-10-11T07:05:03+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-combine-geocode-with-marker-clustering\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Combine Geocode with marker clustering"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/15411","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=15411"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/15411\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=15411"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=15411"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=15411"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}