I believe this is a separate issue than what Ulrich is experiencing.
The OSMGeoAdmin uses the spherical mercator projection (900913), which
in turn requires a 'null' datum shifting file that is not included with
a binary distributions (e.g., ubuntu). On installations missing this
file, when a geometry is transformed to 900913 it is turned to rubbish.
You can either install PROJ.4 from source or generate the null grid
using the `nad2bin` program. An example of generating this file is the
note inside the ubuntu part of the docs:
http://geodjango.org/docs/install.html#ibex
>> I have, however, one (for now ;)) problem with the GeoModelAdmin in
>> that it seems to default to 0.0, 0.0 coordinates for new objects.
>>
>> After looking at the GeoModelAdmin source I created a subclass and set
>> default_lon and default_lat (I also confirmed via firebug that the
>> values did indeed make it to the admin js). However that seems to have
>> no effect. The map still loads with left border of africa looking at
>> me.
In order for the default lon/lat values to be accepted they need to be
in the right coordinate system (e.g., transformed to 900913 if using the
OSMGeoAdmin), and a zoom level must be specified via a `default_zoom`
attribute.
Regards,
-Justin