You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Shazron Abdullah (JIRA)" <ji...@apache.org> on 2012/08/29 10:26:07 UTC

[jira] [Commented] (CB-1288) position.timestamp.getTime() fails on iOS, ok on Android

    [ https://issues.apache.org/jira/browse/CB-1288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13443904#comment-13443904 ] 

Shazron Abdullah commented on CB-1288:
--------------------------------------

The watchPosition js is common on iOS and Android:
https://github.com/apache/incubator-cordova-js/blob/master/lib/common/plugin/geolocation.js#L169

The only differentiating factor would be the native code, and it is setting the timestamp:
https://github.com/apache/incubator-cordova-ios/blob/master/CordovaLib/Classes/CDVLocation.m#L337

I'll try to repro this tomorrow.
                
> position.timestamp.getTime() fails on iOS, ok on Android
> --------------------------------------------------------
>
>                 Key: CB-1288
>                 URL: https://issues.apache.org/jira/browse/CB-1288
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: iOS
>    Affects Versions: 2.0.0
>            Reporter: Mr. Extreme
>            Assignee: Shazron Abdullah
>             Fix For: 2.1.0
>
>
> Take this piece of code:
> {code:javascript}
>     gpsWatchId = navigator.geolocation.watchPosition(
>                     function( position ) // success
>                     {
>                         positionTimestamp = position.timestamp.getTime();
>                     }
>                     // don't forget the rest of the code
> {code}
> position.timestamp will be a Date object on Android, so even alert( position.timestamp ) works. On iOS 5, it causes the JS engine to fall over with some fatal error, rendering the whole app useless. You have to replace the code with your own "x = new Date; y = x.getTime();" code. If I saw correctly position.timestamp is non-existent on iOS.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira