|
|
|
|
|
- Special cases
- Required permissions
GPSInfo (Function) In french: GPSInfo Returns the information about the location provider used by the application for geolocation functions. IF GPSInfo(gpsSpeed) = False THEN
Error("La vitesse de déplacement du téléphone ne peut pas être déterminée.")
END
Syntax
<Result> = GPSInfo(<Information>)
<Result>: Variant Requested information according to <Information>. <Information>: Integer constant Type of information requested. | | | gpsAltitude | Altitude of available device. | <Result> will correspond to:- True if the location provider can be used to define the device altitude,
- False otherwise or if no location provider was found.
| gpsDirection | Direction of the move performed by the device. | <Result> will correspond to:- True if the location provider can be used to define the direction of the move performed by the device,
- False otherwise or if no location provider was found.
| gpsEnergy | Energy consumption required by the provider. | <Result> will correspond to:- gpsLowEnergy: The supplier must require a low amount of energy.
- gpsAverageEnergy: The supplier can request an average amount of energy.
- gpsHighEnergy: The supplier may require a high amount of energy.
| gpsPrecision | Precision of the position measurement performed by the provider. | <Result> will correspond to:- gpsHigh precision: position calculation with high precision.
- gpsLow precision: position calculation with low precision.
| gpsSpeed | Speed of the move performed by the device. | <Result> will correspond to:- True if the location provider can be used to define the speed of the move performed by the device,
- False otherwise or if no location provider was found.
| gpsType | Type of location provider. | <Result> will correspond to:- gpsSatellite: GPS satellite network location provider.
- gpsNetwork: location provider using mobile antennas or Wi-Fi.
- 0 if the type of location provider was not defined.
|
Remarks Special cases - It is recommended to initialize the location provider settings with GPSInitParameter before retrieving information from that provider.
- The activation status of the location provider is returned by GPSStatus.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|