MLocation Framework 에 대한 필수 API 를 정의
위치 정보 기능을 제공한다.
Changed in version 2.1.0.2
Arguments
Example:
M.plugin("location").current({
timeout: 10000,
maximumAge: 1,
callback: function( result ) {
if ( result.status === 'NS' ) {
console.log('This Location Plugin is not supported');
}
else if ( result.status !== 'SUCCESS' ) {
if ( result.message ) {
console.log( result.status + ":" + result.message );
}
else {
console.log( 'Getting GPS coords is failed' );
}
}
else {
if ( result.coords ) {
console.log( JSON.stringify(result.coords) );
}
else {
console.log( 'It cann\'t get GPS Coords.' );
}
}
}
});