TomTom integration does not work anymore?

You must Login before you can answer or comment on any questions.

Hi there,

I did for 6 months back an integration for TomTom navigation with URL Scheme. This worked out great, but then TomTom updated their iPhone app to version 1.10. Since then the integration does not work.

Anyone tried the same?

My integration looks like this:

var lat = dbDataArray[chosenRoute]["lat"].toFixed(6); //geo coordinate
var lng = dbDataArray[chosenRoute]["lng"].toFixed(6); //geo coordinate
 
//open navigation
var url = "tomtomhome://geo:action=navigateto&lat="+lat+"&long="+lng+"&name=name";
 
//show map
//var url = "tomtomhome://geo:action=show&lat="+lat+"&long="+lng+"&name=name";
if (Ti.Platform.canOpenURL(url)) {
    Ti.Platform.openURL(url);
}else {
    alert('Please install TomTom Navigation app');
}
Note: I cannot get TomTom to tell me what has changed.

3 Answers

I have tried going back to a previous SDK version of Titanium - the problem is still there. I can see apps like "AroundMe" still open TomTom ok. So what has changed? I am at a loss.

Does TomTom integration still work for anybody out there? Any feedback on this issue would be appreciated...

Your Answer

This question has been locked and cannot accept new answers.