GeoDjango’s admin site
GeoModelAdmin
-
class GeoModelAdmin
[source] -
-
default_lon
The default center longitude.
-
default_lat
The default center latitude.
-
default_zoom
The default zoom level to use. Defaults to 18.
-
extra_js
Sequence of URLs to any extra JavaScript to include.
-
map_template
Override the template used to generate the JavaScript slippy map. Default is
'gis/admin/openlayers.html'
.-
map_width
Width of the map, in pixels. Defaults to 600.
-
map_height
Height of the map, in pixels. Defaults to 400.
-
openlayers_url
Link to the URL of the OpenLayers JavaScript. Defaults to
'http://openlayers.org/api/2.13.1/OpenLayers.js'
.-
modifiable
Defaults to
True
. When set toFalse
, disables editing of existing geometry fields in the admin.Note
This is different from adding the geometry field to
readonly_fields
, which will only display the WKT of the geometry. Settingmodifiable=False
, actually displays the geometry in a map, but disables the ability to edit its vertices. -
OSMGeoAdmin
-
class OSMGeoAdmin
[source] -
A subclass of
GeoModelAdmin
that uses a spherical mercator projection with OpenStreetMap street data tiles. See the OSMGeoAdmin introduction in the tutorial for a usage example.
© Django Software Foundation and individual contributors
Licensed under the BSD License.
https://docs.djangoproject.com/en/1.10/ref/contrib/gis/admin/