B4A Question User Claims that app cannot find bluetooth device after Android 12 Update - ema01 (first post)    Dec 14, 2021   (1 reaction) Long story short, the real issue in the end was in how we detect that location is active. We were using the "suggested" method around here, which is to use the phone library and check the content of "location_providers_allowed" This setting has been finally removed in android 12 so to see if locatio B4A Question location permissions in Android 14 (sdk34) - drgottjr (first post)    Feb 11, 2024   (1 reaction) not only do you need fineaccess permission in the manifest, but you will have to direct the user to the locations settings dialog on his device if location is turned off, even though the user has granted you permission to use location (it's a runtime permission). you cannot turn on location from the B4A Question how do I calculate the distance between two different points? - klaus (first post)    Jul 31, 2019   (2 reactions) I would do it like this:
Add the locations to the list.
Public lstLocations As List
lstLocations.Initialize
Sub MapFragment1_Click (Point As LatLng)
'add the location to the List
Private Location1 As Location
Location1.Initialize2(Point.Latitude, Point.Longitude)
lstLocations.Add( B4A Library GeoLocation - DonManfred (first post)    Dec 11, 2018 You can call the method to get the location. It checks different providers and returns the one with a result.
public void GetLocation(BA ba) {
LocationManager locationManager = (LocationManager) ba.context.getSystemService(ba.context.LOCATION_SERVICE);
if (!locationManager.isPro B4A Question [SOLVED] GPS Library - BearingTo and DistanceTo - agraham (first post)    Sep 28, 2019   (2 reactions) From the Android documentation for Location.distanceTo https://developer.android..html#distanceTo(android.location.Location) Returns the approximate distance in meters between this location and the given location. Distance is defined using the WGS84 ellipsoid. Share My Creation BS Where Am I - Find your location address anytime! - Xenno    Oct 26, 2017   (4 reactions) Description
Find your current location address at any time. Also available on home screen by using a simple widget. Location is retrieved either using GPS or WiFi/network and address is retrieved from Google.
B4A Libraries
LocationManager
HttpUtils2
MaskedEditText
RuntimePermissions
SQL
Screensh B4A Question Missing information in prominent disclosure - JohnC (first post)    May 27, 2021 Location is needed when "scanning" for wifi ap's or Bluetooth devices. This is because those devices can be used to "locate" you even if your GPS is off.
For example, Wifi access points (AP) are typically located in a fixed physical location. Whenever your phone "sees" a wifi access point, google c B4A Question [B4X] BLE 2 - Bluetooth Low Energy - Nicolás Cieri (first post)    Jan 04, 2023   (1 reaction) I have solved it, now it Works. https://source.android. Is there a way to detect when location is off??????, turning this on Works. Location scanning A device's location services can use Bluetooth to detect Bluetooth beacons and provide a more accurate location. This is how users enable the featu B4A Library FusedLocationProvider - warwound    Mar 12, 2020   (41 reactions) By default this is 0.
It is important to note that part of the criteria that defines your request for a location is the location permission that you (manually) set in the manifest file.
This library does not automatically add any permission to your manifest and this library will fail to work if yo B4A Library Geocoder library - warwound    Mar 31, 2016   (31 reactions) GetFromLocationName (LocationName As String, MaxResults As Int, Tag As Object)
Gets an Array of Address objects that describe the named location.
LocationName may be a place name such as "Dalvik, Iceland", an address such as "1600 Amphitheatre Parkway, Mountain View, CA", an airport code such as "S Page: 1   2   3   4   5   6   7   Powered by ColBERT |