Hybrid View
-
21 Sep 2012 6:03 AM #1
Second, third, etc geolocation call fails in IOS 6 chromeless
Second, third, etc geolocation call fails in IOS 6 chromeless
I don't know if this is a Sencha bug or an iOS one, but in iOS 6 when an app is loaded in chromeless/standalone, only one GPS call can be made, all further GPS calls time out or just don't plain work.
This is on v2.0.2, and v1.1.
-
21 Sep 2012 7:13 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
This sounds like an iOS issue as we use the standard HTML5 Geolocation. Actually couldn't get it to update once on my iPhone 4S with iOS 6 and saved the test to homescreen. So I have opened a bug in our bug tracker to see if there is anything we can do.
Code:var geo = new Ext.util.Geolocation({ autoUpdate : false, listeners : { locationupdate : function() { Ext.Viewport.down('container').add({ html : 'location update' }); }, locationerror : function() { Ext.Viewport.down('container').add({ html : 'location update' }); } } }); Ext.Viewport.add({ items : [ { xtype : 'button', text : 'Update Location', handler : function() { geo.updateLocation(); } } ] });
-
23 Sep 2012 8:49 PM #3
One workaround is to disable the apple-mobile-webapp-capabile meta tag, but I can't see any way to do this in ST2. Any suggestions?
-
30 Oct 2012 4:53 PM #4
Seeing this problem as well..
Seeing this problem as well..
Has a solution been found in the meantime?
This duplicates another bug already reported in our system:
TOUCH-3495


Reply With Quote