Dear all,
I am going to do this thing:
1. type a venue name in a textbox
2. click a button
3. using google map distance api to show the route between mylocation and targetlocation
My question is that, is it possible to do 3? When I follow the step in google developer console, and finally get the json within two venue, i.e
https://maps.googleapis.com/maps/ap...t&key=AIzaSyDlahITQsk6VvxETeny0N95ZUeOxOCg-ds
And I know nothing about how to show the route in the map inside my app.
Besides, I try to use webview to load the uri, like
But the web show error 404, do this method work anymore?
I am hoping to see any response. Thank you.
I am going to do this thing:
1. type a venue name in a textbox
2. click a button
3. using google map distance api to show the route between mylocation and targetlocation
My question is that, is it possible to do 3? When I follow the step in google developer console, and finally get the json within two venue, i.e
https://maps.googleapis.com/maps/ap...t&key=AIzaSyDlahITQsk6VvxETeny0N95ZUeOxOCg-ds
And I know nothing about how to show the route in the map inside my app.
Besides, I try to use webview to load the uri, like
B4X:
WebView1.LoadUrl($"https://maps.googleapis.com/maps/api/staicmap?center=${MyLatitude},${MyLongitude}&zoom=12&size=400*400&maptype=terrain&markers=size:medium%7Ccolor:blue%7C${MyLatitude},${MyLongitude}&sensor=false"$)
I am hoping to see any response. Thank you.