B4A Question Search an address on google maps - Dman (first post)    Oct 07, 2015   (1 reaction) Here is the way I open an address in maps using a button. Not sure about google maps though.
Sub btnMap_Click
Dim MapIntent As Intent
Location = "geo:0,0?q= " & txtAddress.Text
MapIntent.Initialize(MapIntent.ACTION_VIEW, Location)
StartActivity(MapIntent)
End Sub B4A Question Google Maps searchbar - Csaba Balogh    Feb 02, 2020 What is the correct way of providing a search bar of locations to my Google Maps activity? I would like to let users search their destination... Is there any API call or library that cab help? B4A Question Google Image Search API - Scotter    Jun 24, 2020 Hi - I want to build an app that accesses Google Image Search API to set options, search for images via keyword, and even download one or more images from the resultset. I searched the entire forum and the closest thread I found was the following one that is for google maps, which I learned a bit fr B4A Question Google maps search bar - apty    Sep 25, 2016 I want to add search bar in Google maps inside my application like in the image below (with autosuggest).
Is there a method in google maps or google map extras for this type of search? I can do the same in javascript and webview but i want it to be native.Please, if someone can assist i will appreci B4A Question Address search with google maps library - henry montoya    Nov 21, 2015 Hello everyone.
I'm working with google maps library and need to seek directions as is done on the web, where by placing an address or a reference point shows you a list of all possible directions or suggestions that match your search.
I appreciate all the help you can give me. B4A Question Google Places - Jorge M A (first post)    May 15, 2019 There are a lot of stuff related to Google Maps on the forum.
You maybe want to try a search on it, and read what is similar to your needs.
https://www.b4x./?query=Google+Maps+search&prefix=0&product=b4a B4A Question Need to pass location (lat,long) to "Maps App" in mobile - Andrew (Digitwell) (first post)    Jan 18, 2023   (2 reactions) The following code , taken from a working app, will navigate to a point from your current location using google maps Sub NavigatetoLatLong(Lat As String, Lng As String) Dim mapIntent As Intent Dim gURI As String gURI="google.navigation:q=" & Lat & "," & Lng mapIntent.Initiali B4A Question Google Map question - grafsoft    Oct 14, 2022 With this code
Private Sub MapFragment1_Click (Point As LatLng)
gmapp.AddMarker(Point.Latitude, Point.Longitude, "Markierung")
End Sub
the user can add markers and when he taps the marker, he can ask for directions (lower right corner, left symbol) or search for any place (lower right corner B4A Question what technology should I choose for search objects on Google maps and routing. - Lakhtin_V    Oct 14, 2017 Now I use the GPS and WebExtras library without registration and additional settings. But I can not perform a search and routing there. I'm still a novice in the programming of Google services. What will you advice me? B4A Question Find Google Maps marker by Snippet or Name - Erel (first post)    Jan 15, 2020   (1 reaction) A Map is even better for this.
Markers.Put(NewMarker.Title, NewMarker)
...
Dim m As Marker = Markers.Get("title 1") Page: 1   2   3   4   5   6   7   Powered by ColBERT |