Topic: GPS information

Vector2 toPosition = OnlineMapsLocationService.instance.position;
this code I can Get Location of my position

but  how I can Get in My position  GPS Accuracy in meter

Re: GPS information

Hello.

The Online Maps Location Service is just a wrapper around the Unity Location Service.
You can get the accuracy from the Unity Location Service:

float horizontalAccuracy = LocationService.lastData.horizontalAccuracy;

https://docs.unity3d.com/ScriptReferenc … nInfo.html

Kind Regards,
Infinity Code Team.

Boost your productivity a lot and immediately using Ultimate Editor Enhancer. Trial and non-commerce versions available.

Re: GPS information

Thanks alot