ActionScript 3 AS3:使用GeoLocation计算MPH(版本1)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:使用GeoLocation计算MPH(版本1)相关的知识,希望对你有一定的参考价值。

var geo:Geolocation = new Geolocation();
 geo.addEventListener(GeolocationEvent.UPDATE, geolocationUpdateHandler);
 function geolocationUpdateHandler(e:GeolocationEvent):void
 {
     var altitude:Number = e.altitude;
     //Meters Per Second
     var mps:Number = e.speed;
     //Miles Per Hour
     var mph:Number = Math.round( (mps * 360000) / 160934.4 ) );
     trace( "altitude:", altitude, "meters per second:", mps, "miles per hour:", mph );
 }

以上是关于ActionScript 3 AS3:使用GeoLocation计算MPH(版本1)的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML

ActionScript 3 使用Blitting的AS3动画

ActionScript 3 AS3:使用POST发送数据

ActionScript 3 在AS3中使用麦克风

ActionScript 3 使用AS3读取不同的文件类型

ActionScript 3 AS3使用RegExp检查数字和字母