Extract geographic metadata from HTML.
Parsed HTML document or raw HTML string
Geographic metadata
Extracts geographic location information including coordinates, place names, and region codes from meta tags.
// With parsed document (recommended for multiple extractions)const doc = parseHTML(htmlString);const geo = extractGeo(doc);// Or directly with HTML stringconst geo = extractGeo(htmlString); Copy
// With parsed document (recommended for multiple extractions)const doc = parseHTML(htmlString);const geo = extractGeo(doc);// Or directly with HTML stringconst geo = extractGeo(htmlString);
Extract geographic metadata from HTML.