Home > Back-end >  Is there any flutter package to get Latitude,Longitude and elevation of users location?
Is there any flutter package 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.

CodePudding user response:

Please refer to this flutter geolocator: ^8.2.0 and geocoder2 plugin. This helps you get latitude, longitude, address, state, country and street address.

  • Related