I am currently exploring MapQuest navigation and utilizing JavaScript code to retrieve the data.
Although I am able to extract JSON content in my application, I am unsure of how to utilize this data for navigation. I have started a new project and executed the code.
class jsonapp extends AsyncTask<String, Void, String>{
@Override
protected String doInBackground(String... uri) {
// TODO Implement the method...
I am aiming to create a narrative-style navigation system. Any guidance on how to achieve this?
Am I on the right track with my approach?
Thank you in advance for your help.