I'm trying to open the browser to Google Places with a place id but it's opening the Google map app. How can I get it to load the browser and not the Google map app?
The URL works on my PC browser.
I've tried:
and
Thanks
The URL works on my PC browser.
I've tried:
B4X:
Dim p As PhoneIntents
StartActivity(p.OpenBrowser("https://www.google.com/maps/search/?api=1&query_place_id=" & sPlaceId))
and
B4X:
Dim p As PhoneIntents
StartActivity(p.OpenBrowser("https://www.google.com/maps/place/?q=place_id:" & sPlaceId))
Thanks