> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To view this discussion on the web visit
>
https://groups.google.com/d/msg/django-users/-/asb2PweS-HEJ.
What you really mean by "plot"?
If you mean that show it somehow somewhere on a map then there is really
nothing "built in" in Django for that. IIRC admin can show only
one (first?) geometry field defined.
So you need to have some kind of mapengine to actually produce map also
known as WMS (or WFS).
Mapserver, Mapnik or Geoserver being propably one of the most used ones.
After you have done that you can build HTML page that uses some means to
show map. OpenLayers is for that - it's javascript library to work with
(interactive) maps on a webpage.
Now you should have all pieces that allows you to put together stuff
that can show your points from a database.