B4A Tutorial Google Maps - Erel    Jul 7, 2025   (36 reactions)   tags: Maps, GoogleMaps, GPS, Erel, Map, Google Mpas 41895 Installation instructions: - Register your app in Google developer console: https://console.developers.google.com You need to enable Google Maps Android API. Then click on Credentials ->.... If you don't see it then make sure that the GoogleMaps library is selected. You can change... a reference to the GoogleMap object. Complete code: Sub Class_Globals Private Root As B4XView Private xui As XUI Private MapFragment1 As MapFragment Private gmap As GoogleMap Private rp... B4i Tutorial GoogleMaps Tutorial - Erel    Nov 5, 2025   (12 reactions)   tags: Maps The iGoogleMaps library allows you to show a map inside your app:
http://www.b4x.com/basic4android/images/SS-2014-11-17_09.18.50.png
It is similar to B4A GoogleMaps library.
In order to use... B4A Tutorial [B4X] [B4XPages] GoogleMaps example - Erel    Jul 13, 2020   (11 reactions) the example project from the above tutorial. Note that there was an issue in iGoogleMaps v1.41...97060 Example of showing a Google map, in a cross platform B4XPages project. The APIs of the three GoogleMaps libraries are quite different from one another, so we need to use platform specific code.../forum/threads/google-maps.63930/#content B4J - https://www.b4x.com/android/forum/threads/56744/#content B4i - https://www.b4x.com/android/forum/threads/47019/#content In B4i you need to add GoogleMaps... B4A Tutorial (old) Google Maps Android v2 tutorial - Erel    Feb 24, 2016   (13 reactions)   tags: googlemaps /threads/google-maps.63930/#post-404386
GoogleMaps library requires v2.50 or above.
GoogleMaps library allows you to add Google maps to your application. This library requires Android 3+ and will only... B4A Code Snippet [B4X] Custom GoogleMaps - MarcoRome    Jul 17, 2020   (10 reactions) This is an example of how you can customize a Map. Through the B4XCanvas functions it is possible to create the map with photos, text, etc. The classes used are MapScale + GoogleMapsExtra (https... As GoogleMap Private ApiKey As String = "xxxx" Private MapScale1 As MapScale... Attributes #ApplicationLabel: B4i custom Maps #Version: 1.0.0 'Orientation possible values...("Page1") Page1.RootPanel.LoadLayout("1") Page1.Title = "Sicilia Map... B4J Code Snippet Google Map with custom style - Erel    Jul 29, 2019   (8 reactions) https://www.b4x.com/basic4android/images/SS-2017-10-11_09.44.35.png This method allows to set a custom style to the map. Step 1: Create the style with the wizard and save the json string in a file: https://mapstyle.withgoogle.com/ Step 2: Set the style after the map is ready: SetMapStyle(File.ReadString(File.DirAssets, "style.txt")) Code: Sub SetMapStyle(style As String) Dim jo As JavaObject = gmap jo = jo.GetField("map") jo.GetFieldJO("jsObject"... B4J Tutorial Get EXIF GPS information and show images in google maps - Mark Read    Aug 5, 2018   (8 reactions)   tags: Erel My Aim: Extract the gps information from all images in a directory and generate a html file to view in a browser showing all images in google maps at the coordinates they were taken. As a follow-up to my question in this thread: Link and the code from canalrun hier: Link, I will post my whole project for those who are interested. You will need the latest version of metadata-extractor (Link). Version 2.6.2 does not seem to work for the newer Nikon cameras. Extract the two files and put them... B4A Tutorial Google Maps with FusedLocationProvider - Erel    Sep 13, 2017   (10 reactions)   tags: Fusedlocation provided Google Maps uses the GPS as its location provider. It will not show the current location if GPS is disabled. It is possible to switch to a custom location provider. For example, here is me traveling in Antarctica: https://www.b4x.com/basic4android/images/SS-2017-09-13_10.30.25.png The attached example uses FusedLocationProvider to inject the location. The steps to create a custom location.... It will raise when the source is activated. 3. Set the map source by calling setLocationSource. 4... B4J Tutorial [BANAnoWebix] Lesson 20 Google Map - Mashiane    Jun 30, 2019   (2 reactions) Ola Simply put, this google map allows one to display a google map on their apps. One is able to also add markers that properties can be set up for. 81751 One needs to get their own google map key to use this on their app. In this instance, we create a google map instance, set its map type, add some markers and then trap the click event of markers. ' Dim R1 As WixRow R1...").SetZoom(6).SetMapType(gmap.MAP_TYPE_ROADMAP) gmap.SetCenter(25.335, 2.324) '... B4A Question Google Maps tutorial - Roger Daley    Jul 30, 2019 a suitable library is the usual cause. I already have GoogleMaps library included, this should be enough...Hi All,
Sorry about this, but a couple dumb questions RE: the tutorial.
I am polishing up... Page: 1   2   3   |