function cLonLat(oDeg,lang){this.lang=lang;this.moLon=new cDegMinSec(oDeg.lon);this.moLat=new cDegMinSec(oDeg.lat);this.msLon=(0<=this.moLon.mdDeg)?"東経":"西経";this.msLat=(0<=this.moLat.mdDeg)?"北緯":"南緯";} cLonLat.prototype.Infos=function(){return{lonDMS:this.moLon,latDMS:this.moLat,lon:this.moLon.ToStr(this.lang),lat:this.moLat.ToStr(this.lang),latlon:this.moLat.mdDeg+", "+this.moLon.mdDeg,ClipBoardLatLon:this.moLat.mdDeg+"\t"+this.moLon.mdDeg};}