Re: How to get Latitude and Longitude of a user

2019-12-29 Thread Dominick Del Ponte
Don't know if it is ideal, but, assuming you have a form on the page you could use the geolocation API and put the values in hidden form fields to send to your DB. Dominick delponte.d...@gmail.com On Sat, Dec 28, 2019 at 6:02 A

Re: How to get Latitude and Longitude of a user

2019-12-27 Thread carlos
https://github.com/makinacorpus/django-leaflet On Fri, Dec 27, 2019 at 1:02 PM Yash Garg wrote: > I want to get Latitude and Longitude of a user to store in my data model > fields- > latitude= models.FloatField(default=0.0) > longitude = models.FloatField(default=0.0) > > How can i

How to get Latitude and Longitude of a user

2019-12-27 Thread Yash Garg
I want to get Latitude and Longitude of a user to store in my data model fields- latitude= models.FloatField(default=0.0) longitude = models.FloatField(default=0.0) How can i do this without using Google API. -- You received this message because you are subscribed to the Google Gr