简体   繁体   中英

How to pass a second parameter to geolocation success function ?

This is what I'd like to do:

navigator.geolocation.getCurrentPosition( wallEventByCat( variable, position ), handle_errors );

in order to have this kind of callback:

function wallEventByCat( position, category )
{
}

Is this doable ? if yes, how ?

Thanks

You should use an anounymous function like:

navigator.geolocation.getCurrentPosition( function(position){
     wallEventByCat( variable, position );
}, handle_errors );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM