https://www.google.com/maps/place/10004,US shows Zip Code 10004 area highlighted with boundary border, as shown in the attached image.
However the following code, using the identical url, only zooms to somewhere within the area, no border, nor highlighting.
How the intent should be changed to have the same effects?
TIA
However the following code, using the identical url, only zooms to somewhere within the area, no border, nor highlighting.
B4X:
Dim i As Intent
Dim url As String= $"https://www.google.com/maps/place/10004,US"$
Log(url)
i.Initialize(i.ACTION_VIEW,url)
i.SetComponent("com.google.android.apps.maps/com.google.android.maps.MapsActivity")
StartActivity(i)
How the intent should be changed to have the same effects?
TIA