5👍
Here are a few useful links if you decide to go for Rails:
1👍
What you are trying to do doesn’t have much to do with Django or Rails. It will be mostly javascript. Here’s a simple implementation outline:
- Follow the tutorials to get started on google maps api on a static local html file.
- In javascript write a map_init and add_marker helper functions.
- When confident, add the link, div, and script tags you wrote to your template.
- Have your view/controller method get a list of objects from the db.
- Pass them to the template
- In the template do a for loop over the object list.
- inside the loop use the appropriate obj attributes to feed the add_marker helper function.
Source:stackexchange.com