B4A Tutorial Google Maps - Erel    Jul 7, 2025   (36 reactions)   tags: Maps, GoogleMaps, GPS, Erel, Map, Google Mpas ://console.developers.google.com You need to enable Google Maps Android API. Then click on Credentials ->.../> ) - Add a MapFragment with the visual designer. It will appear under the CustomView menu. If you don't see it then make sure that the GoogleMaps library is selected. You can change the properties from the designer. Set the anchors to BOTH so the map will fill the activity: https... a reference to the GoogleMap object. Complete code: Sub Class_Globals Private Root As B4XView... B4i Tutorial GoogleMaps Tutorial - Erel    Nov 5, 2025   (13 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...://developers.google.com/maps/documentation/ios/start#obtaining_an_api_key Start with the attached... text. Copy the GoogleMaps.bundle folder from the example project (under Files\Special) to.../GoogleMaps.zip Updates: - Example updated with B4i v10+ and Google Maps v10.4.0 requirements. The bundle... B4J Library jGoogleMaps library - Erel    May 22, 2025   (24 reactions)   tags: google map, WebView The latest version of Google Maps isn't compatible with JavaFX WebView. Don't use... This library is similar to B4A and B4i GoogleMaps libraries. https://www.b4x.com/basic4android... with GoogleMaps JavaScript API V3. Using the map is quite simple. You need to initialize GoogleMap and then wait for the Ready event. GoogleMap.AsPane returns the pane that holds the map. You should add.... Updates: V2.01 - Sets the Google Maps Javascript SDK version to 3.56. There is currently an issue... B4i Library [class]GoogleMapsExtra - Erel    Nov 5, 2025   (6 reactions)   tags: b4i This class extends GoogleMaps library. Currently it supports: - AddCircle - Adds a circle at a give point. - AddGroundOverlay - Adds an image at the given bounds. - ZoomToPoints - SetSelectedMarker - SetMarkerRotation - SetGroundAnchor - sets the marker anchor. - AddPolygon Example: gextra.Initialize(gmap) Dim ne, sw As LatLng ne.Initialize(20, 20) sw.Initialize(00, 00) Dim bounds As Object... Project is available here: https://www.b4x.com/b4i/files/GoogleMaps.zip Don't miss the bundle under... Share My Creation GoogleMapsDemo - klaus    Apr 30, 2024   (25 reactions)   tags: GoogleMaps Some time ago I played a lot with GoogleMaps according to this post: https://www.b4x.com/android...: https://www.b4x.com/android/forum/threads/calcolare-superficie-con-google-map.91740/#post-580370 I added the area calculation. ATTENTION: the jGoogleMaps library needs Java 19 ! And, as it might be interesting for others, I upload the two projects below: GoogleMapsDemoLight, a light version of GoogleMapsDemo below for better understanding. GoogleMapsDemo, this project contains almost everything... B4A Question Map Collection - The most useful collection... - Erel    Nov 12, 2015   (23 reactions)   tags: Maps, MapColl Map is a collection that maps keys to values. It can also be named hashtable, dictionary or... the key. Retrieving the key is a fast operation. The size of the map doesn't affect the performance... methods are Put and Get. Put adds a key / value pair to the map and Get returns the value based... the previous item will be replaced. Dim days As Map days.Initialize days.Put(1, "Sunday") days.Put(2, "Monday") Log(days.Get(1)) You can also use CreateMap as a shorthand: Dim days... B4J Library [B4X] Xml2Map - Simple way to parse XML documents - Erel    Jul 16, 2023   (51 reactions)   tags: xml, Xml2Map, Erel . That is the reason behind the Xml2Map class. It internally parses the XML document and returns a Map... can achieve the same thing with this code: Sub Process_Globals Private ParsedData As Map End Sub...) If FirstTime Then Dim xm As Xml2Map xm.Initialize xm.StripNamespaces = True '<... rss As Map = ParsedData.Get("rss") Dim channel As Map = rss.Get("channel") Dim items As List = channel.Get("item") For Each item As Map In items Dim title... B4A Class Open Street Map viewer - GPS - spsp    Mar 17, 2021   (61 reactions) Hi,
This b4Xlib contains a custom view (cvMap) which can display Open Street Map.
109092109081... on the map.
UI :
- Lat/lng Center of the map
- Zoom Level
- Compass Direction with rotation
- Scale... Level Changed
- Compass Direction Changed
- Shape Clicked
- Map Clicked
- Center Lat/lng clicked... views
Other files in the b4xlib :
- coMapUtilities : code module with Types, functions, helpers... Games [XUI2D] X2TileMap - Tiled maps - Erel    Aug 23, 2018   (21 reactions)   tags: games First version of X2TileMap is attached. It allows loading map files created with Tiled Map Editor: https://www.mapeditor.org/ 281815243 Tiled is a popular game editor. For now only the basic features are supported. X2TileMap can load maps with tile layers and draw them. Drawing is done.... The performance is very good. Format - Maps and tilesets should be saved as json files. Note... as the map tiles. An example is attached. The video above is from the B4i example which shares the same... 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... for showing a map. 1. Download Google Play services - From the IDE choose Run AVD Manager and then..." and "Obtaining an API key". Tips: - Make sure to select "Google Maps Android...="$PACKAGE$.permission.MAPS_RECEIVE" android:protectionLevel="signature"/>... Page: 1   2   3   4   5   6   7   |