So...i have used a map in a project which needs coordinates to set markers to different positions. There are many options available to me to get the coordinates.
Store the coordinates in a database and use django view to get and forward the coordinates to the javascript function using an ajax response.
Store it into a python list or dictionary and send the data when needed to that javascript func.
Hard code the coordinates in a HTML tag attribute and get them via javascript and then set the marker.
Use files and get data through file I/O in django view and forward that to the javascript function.
I want to know which of these techniques is efficient for about 50 set of coordinates and which one will be more sufficient if my set increases to about 1000?
If you have a better way to do this...please share it.. Thanks