I would suggest having a look at the Google Maps URLs. Google designed Google Maps URLs as universal, cross-platform URL to launch Google Maps and perform searches, get directions and navigation, and display map views and panoramic images.
So, instead of the following URL
https://www.google.com/maps/@13.0106708,77.5552532,17z
use the official Google Maps URLs link
https://www.google.com/maps/search/?api=1&query=13.0106708,77.5552532
It will open Google Maps with marker. In case if you want to show some specific place and you retrieved a place Id from Google Maps API you can add place id in URL as well
https://www.google.com/maps/search/?api=1&query=13.0106708,77.5552532&query_place_id=ChIJZ0FegEs9rjsRZFR-C-hVwqQ
The latter will show Orion Mall place.
I hope this helps!