this is how to share text to other apps :
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Hello!");
// (Optional) Here we're setting the title of the content
sendIntent.putExtra(Intent.EXTRA_TITLE, "Send message");
// (Optional) Here we're passing a content URI to an image to be displayed
sendIntent.setData(contentUri);
sendIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// Show the Sharesheet
startActivity(Intent.createChooser(sendIntent, null));
instead of "hellow" you can use coordinate like this :
https://www.google.com/maps/@[lat],[long],[zoom]z
example
https://www.google.com/maps/@14.878651,50.2937643,4z
also if you want only send to telegram you can use this