Home > Enterprise >  Is there any flutter pacakage to get Latitude,Longitude and elevation of users location?
Is there any flutter pacakage to get Latitude,Longitude and elevation of users location?

Time:03-22

I'm trying to create a flutter app which shows users location Longitude, Latitude and elevation . I came to know Geolocator package will help to get Longitude, Latitude but I also want to know the land elevation and even more physical features if available.

CodePudding user response:

Use location package: https://pub.dev/packages/location It lets you get the user's longitude, latitude, altitude, and other measures.

CodePudding user response:

please go through the link , you will can find this answer ,

https://stackoverflow.com/a/71449713/17180860

It mentions 2 packages. It will give latitude and longitude and if you use this latitude and longitude you can find address and other information , and can use a map also.

  • Related