1

这是如何运作的?请提供有关如何从头开始构建此功能的详细答案。

4

1 回答 1

0

查看 HTML5 地理位置。看到这个: http: //merged.ca/iphone/html5-geolocation/

根据该代码,您想使用 navigator.geolocation 来检索适当的位置:

if (navigator.geolocation) 
{
    navigator.geolocation.getCurrentPosition( 

        function (position) {  

        // Did we get the position correctly?
        // alert (position.coords.latitude);

        // To see everything available in the position.coords array:
        // for (key in position.coords) {alert(key)}

        mapServiceProvider(position.coords.latitude,position.coords.longitude);

        }, 
        // next function is the error callback
        function (error)
        {
            switch(error.code) 
            {
                case error.TIMEOUT:
                    alert ('Timeout');
                    break;
                case error.POSITION_UNAVAILABLE:
                    alert ('Position unavailable');
                    break;
                case error.PERMISSION_DENIED:
                    alert ('Permission denied');
                    break;
                case error.UNKNOWN_ERROR:
                    alert ('Unknown error');
                    break;
            }
        }
        );
    }
}
else // finish the error checking if the client is not compliant with the spec
于 2012-07-29T07:34:58.490 回答