การแปลงพิกัดเป็นรูปแบบอื่น
- Longdo Map API จะใช้ค่าพิกัดแบบ WGS84 เป็นหลัก ผู้ใช้งานสามารถแปลงเป็นพิกัดในรูปแบบอื่นโดยใช้ library proj4js
var dms = longdo.Util.locationToDMS(location);
- ค่า dms:พิกัดในหน่วย องศา/นาที/วินาที
var utmZone = longdo.Util.locationToUTMZone(location); var utmProj = '+proj=utm +zone=' + utmZone.zone + (utmZone.hemisphere == 'S' ? ' +south' : '') + ' +datum=WGS84 +units=m +no_defs' var utmPoint = proj4(utmProj, [location.lon, location.lat])
- ค่า utmZone:เขตของระบบพิกัดแบบ UTM โดยประเทศไทยจะอยู่ในเขต 47N และ 48N
- ค่า utmProj: projection ที่ต้องการจะแปลง
- ค่า utmPoint: ค่าพิกัดที่ถูกแปลงเป็นรูปแบบที่ต้องการแล้ว
ตัวอย่างWGS84 (EPSG:4326)=
=
UTM (EPSG:32647, EPSG:32648)=
Geohash=