I'm developing an app where i want to show the nearest locations (Stored in DB) to the user.
Uri uri =Uri.parse("http://maps.google.com/maps?q=18.344,73.34");
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, uri);
startActivity(intent);
I have tried this, and it works fine to show the single marker on the map, but my problem is that, "I want to show multiple markers.." Is this allowed..?? if yes, please show me the way..?