Hi
I realize that geolocation extension included in setup always returns InvalidResponse since last updates (PositionChanged callback on server), but in client (js) returns success and valid coords. Tested up to 1.3.43 version.
Only success if I compile from old downloaded extension sourcecode, has some bugs but i fixed from (coords.sccuracy->coords.accuracy)
From
this.Accuracy = coords.sccuracy ?? double.NaN;
To
this.Accuracy = coords.accuracy ?? double.NaN;
Then i guess something changes in “Wisej.Ext.Geolocation.dll” in last builds
Thanks in advance
Yep, found the change in the log from February 6th. The Geolocation component was returning only the error code but not the error message. The js part was changed to the return both the code and message but the cs class was updated only for the GetCurrentPosition() call and not for the PositionChanged event.
The sccuracy typo error is very old. Thanks for finding this out. The updated component is online at /extensions.
Please login first to submit.