KML Parser, typed.
import { parse } from "https://esm.sh/gh/gnlow/kml.ts/mod.ts"using file = await Deno.open("./your.kml")
const document = parse(file)
console.log(document)const file = await Deno.readTextFile("./your.kml")
const document = parse(file)
console.log(document)