B4J Question How to receive the data from the integrated GPS receiver?

D

Deleted member 103

Guest
Hi,

I want to write an application for a Windows tablet with an integrated GPS receiver.
How to receive the data from an external GPS receiver is clear to me, but how to receive the data from the integrated GPS receiver is not clear to me.
Does anyone have suggestion?
 

thetahsk

Active Member
Licensed User
Longtime User

Looking in Microsoft's C#, you will find a namespace which is called System.Device.Location. After determing in the control panel which gps device driver is installed in your system you can try for further investigation to find an SDK for the gps device. After that you decide to write a c#->Java wrapper or you try to direct call the GPS API function's from your Java Code.

https://docs.microsoft.com/de-de/dotnet/api/system.device.location?view=netframework-4.8 ( German)
 
Upvote 0
D

Deleted member 103

Guest
Looking in Microsoft's C#, you will find a namespace which is called System.Device.Location. After determing in the control panel which gps device driver is installed in your system you can try for further investigation to find an SDK for the gps device. After that you decide to write a c#->Java wrapper or you try to direct call the GPS API function's from your Java Code.

https://docs.microsoft.com/de-de/dotnet/api/system.device.location?view=netframework-4.8 ( German)
Thank you @thetahsk ,
it won't be easy for me. :(
It will be easier if I develop the application completely with Visual Studio.
 
Upvote 0

thetahsk

Active Member
Licensed User
Longtime User

Or you write a C# server that provides the GPS coordinates, which you pick up with B4J. You can use the .net B4XSerializator

 
Upvote 0
D

Deleted member 103

Guest
Your starting point
Wow! It looks very simple. :)

Or you write a C# server that provides the GPS coordinates, which you pick up with B4J. You can use the .net B4XSerializator
I have to study that. :(
 
Upvote 0
Top