Skip to main content

KML

Keyhole Markup Language (KML) เป็นไฟล์ที่มีไวยากรณ์และรูปแบบไฟล์ XML สำหรับการทำโมเดลและการจัดเก็บคุณลักษณะทางภูมิศาสตร์ เช่น จุด เส้น ภาพ รูปหลายเหลี่ยม เช่นเดียวกับโมเดลที่แสดงใน Google Earth, Google Maps และแอปพลิเคชันอื่นๆ

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Placemark>
<name>Bangkok</name>
<description> Bangkok Thailand</description>
<Point>
<coordinates>-100.60282575283826, 13.783073181289998,0</coordinates>
</Point>
</Placemark>
</Document>
</kml>