Different ways of loading BCR file
Posted: Tue Oct 25, 2016 3:29 pm
Hello,
We are experiencing inconsistencies when using different ways to load BCR routes into Navigator.
For a while, we've been using an Android intent method (kind of like 'open as') which was working fine (with some problems that we have discussed before):
Recently we've tried using Navigator's API Interface method, called "Download a BCR file from an arbitrary URL and start the navigation with it" (MSG_RI_DOWNLOAD_AND_START_BCR = 307). After using it for a while we are approaching a conclusion that when route is loaded using this method, the detailed route (segmentcenters) of the file doesn't have any effect, the route is completely re-calculated when it is loaded.
Any insight if that might be the case and if this behaviour is intended?
Kind regards,
Dominykas Viečas
We are experiencing inconsistencies when using different ways to load BCR routes into Navigator.
For a while, we've been using an Android intent method (kind of like 'open as') which was working fine (with some problems that we have discussed before):
Code: Select all
Intent testIntent = new Intent();
testIntent.setAction(Intent.ACTION_VIEW);
testIntent.setDataAndType(Uri.fromFile(tempFile), "application/octet-stream");
startActivity(testIntent);
Any insight if that might be the case and if this behaviour is intended?
Kind regards,
Dominykas Viečas