ionic framework - cordova plugin location-accuracy not showing request -


i using location accuracy plugin in combination ionic (testing in android).

when calling

this.locationaccuracy.request(this.locationaccuracy.request_priority_high_accuracy) .then(() => resolve("request successful"),  error => {    console.error("error requesting location : "+error.message); }); 

i no feedback. neither popup - supposed appear - show up, nor there message in console. when try call request again, tells me there request in progress. problem is, can not see request on screen, somehow seems happen in backend , stuck somewhere.

the requestlocationauthorization() returns "granted" , canrequest() returns true on first call false later on. works intended here too.


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -