Welcome to the new AI2 Forum site Rohit.
Your question seems to be related to your previous questions in the ‘old’ Forum > for example https://groups.google.com/forum/#!searchin/mitappinventortest/rohit|sort:date/mitappinventortest/ivLItSb1lIU/d1oTxknOBQAJ
Answers were provided there to most of the questions you have now. What have YOU done? Show us your code and someone should provide specific advice.
Your new question: “Is it possible to communicate between two apps for acknowledgement/request signals? How?”
Yes. You could use a shared app that does a ‘chat’. Use either a CloudDB and your own server (you are building a commercial app) or the experimental FirebaseDB. How to do this depends on exactly what information needs to be exchanged and what needs to be done. This communication could also be initiating a phone call to the hospital.
You also asked “What should be done to show the route to the nearest hospital from a list of hospitals? I am already able to dind the closest hospital between two hospitals. If this list is to be made on a spreadsheet, how can I obtain/calculate the latitude and longitude to find the closest hospital?” Part of the answer is in the old Forum"
… The Line component can be used to show the straight-line distance. If you need to show a route , use this tutorial that shows how to do display a route with the Map component and OpenStreetMap tiles HOW TO use the new Map Control. plot a route and post driving distance and time .
do something similar (calculate distance and display a route)
and this mini-tutorial explains HOW TO: Use a Google Spreadsheet hosted on your Google Drive to update a Map (the example uses pharmacies (but not hospitals). You want hospitals, so use hospitals.
There are six ways to determine a route I am aware of:
- Use the Google Map API and a distance matrix using JSON
- Use the OpenStreetMap example OpenStreetMaps provides free distance/route information. HOW TO use the new Map Control. plot a route and post driving distance and time describes how to use it. It is a ‘free’ service however excessive usage will get charged. This example also shows how to determine the closest location from a List of all locations. Use that to determine the closest hospital nearest another hospital by slightly adapting the code.
- The ActivityStarter to launch Google’s Navigate app
- Something similar using the OSM web site and App Inventor OpenStreetMap without the Map Component
- You might be able to use MapQuest Open Directions API Web Service offers a limited number of transactions free per month.
-
https://www.graphhopper.com/ is NOT free
There may be other ways. Choose one and use it.
What don’t you understand? We are glad to help. Sharing your code so far with the forum by posting your blocks and a better explanation of how you think this would work would help.
What have you coded so far?
Regards,
Steve