0

デバイスの向きイベントから受け取った値を別の関数で使用することについて質問があります。これは私が持っているものです:

$(window).ready(function(){ 
    $("#btnShowDirection").click(showDirection);

    // Device orientation
    if (window.DeviceOrientationEvent) {
        window.addEventListener("deviceorientation", handleOrientation, false);
    } else {
        alert("Device Orientation is not available");
    }
}); // END OF DOCUMENT READY

// orientation object to save heading of the device
var orientation = {};

function handleOrientation(orientData) {
    var alpha = orientData.alpha;
    orientation.value = alpha;
}

var watchProcess = null;  
function showDirection() {
    if (navigator.geolocation) {
        if (watchProcess == null) {
            navigator.geolocation.watchPosition(geoWatchSucces,geoError);  
        }
    } else {
        alert("Geolocation is not supported!");
    }
}

function geoWatchSucces(position) {
    alert(orientation.value);
}

alert(orientation.value);undefined を返します。どうすればこれを修正できますか? その変数を watchprocess の成功関数で使用したいと考えています。

jsfiddle: http://jsfiddle.net/HJTNJ/

ニールス

4

1 に答える 1

1

Orientation.value は $(window).ready スコープで設定され、そのように geoWatchSucces 関数で設定されます: orientation は単なる空のオブジェクトです...

于 2013-05-16T08:31:51.183 に答える