You can start in your app the Google Maps app with code like:
String uri = String.format(Locale.ENGLISH, "geo:%f,%f", latitude, longitude);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);
Starting in Streetview mode is possible as well.
Is it possible to start Google Maps immediately with the Satellite view?
I could not find information about it via e.g. this Google Maps intent information.