I’ve a web site that works right, when I show page in mobile browser I show message that asks to allow geolocalization process.
I create a TA app, simply a window where I open remote site and… geolocalization doesn’t works
Can you help me?
Thanks
I’ve a web site that works right, when I show page in mobile browser I show message that asks to allow geolocalization process.
I create a TA app, simply a window where I open remote site and… geolocalization doesn’t works
Can you help me?
Thanks
You should probably post some code because nobody understands what you are doing and what is going wrong
Right!!
here is what I’ve (I simply run a remote site)
Titanium.UI.setBackgroundColor('#000');
var tabGroup = Titanium.UI.createTabGroup();
var view = Ti.UI.createView({
backgroundColor : 'Black', // #808080
borderRadius : 8,
height : 50,
width : 150
});
var activityIndicator = Titanium.UI.createActivityIndicator({
//location : Titanium.UI.ActivityIndicator.DIALOG,
width : 200,
height : 80,
message : ' Loading...',
color : 'White'
});
view.add(activityIndicator);
var win1 = Titanium.UI.createWindow({
title : 'App',
backgroundColor : '#fff'
});
var webview1 = Ti.UI.createWebView({
url: '/book/index.html'
});
win1.add(webview1);
win1.open()
Problem is that in page opened localisation is not active… where calling from web is OK!
thanks
Somebody can helps me??
Thanks!
Well good luck, but I fail to see what this has to do with Yii.