Map Intent not working with specific zoom level as well as custom marker
float lat = 40.714728f; float lng = -73.998672f; String maplLabel = \"A
Show location in maps application:
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); String data = String.format("geo:%s,%s", latitude, longitude); if (zoomLevel != null) { data = String.format("%s?z=%s", data, zoomLevel); } intent.setData(Uri.parse(data)); startActivity(intent);