GeoDjango formulär APILink to this heading

GeoDjango tillhandahåller några specialiserade formulärfält och widgets för att visuellt visa och redigera geolokaliserade data på en karta. Som standard använder de OpenLayers-drivna kartor, med ett grundläggande WMS-lager som tillhandahålls av NASA.

FältargumentLink to this heading

Förutom de vanliga formulärfältsargumenten, tar GeoDjango formulärfält följande valfria argument.

sridLink to this heading

Field.sridLink to this definition

Detta är den SRID-kod som fältvärdet ska omvandlas till. Om SRID för kartwidgeten t.ex. skiljer sig från den SRID som används mer allmänt i programmet eller databasen, konverterar fältet automatiskt inmatningsvärden till den SRID:en.

geom_typLink to this heading

Field.geom_typeLink to this definition

Du bör i allmänhet inte behöva ställa in eller ändra det attributet som bör ställas in beroende på fältklassen. Det matchar OpenGIS standardgeometrinamn.

max_geom_collectionsLink to this heading

Field.max_geom_collectionsLink to this definition

The maximum number of geometry collections the field accepts before refusing to parse the input and raising a ValidationError. This guards against crashes in the underlying GEOS library when parsing deeply nested GEOMETRYCOLLECTION input. It defaults to 198.

The limit is applied differently depending on the input format: for well-known text (WKT) it bounds the nesting depth, while for well-known binary (WKB and hex-encoded WKB) it bounds the total number of geometry collections (both breadth and depth). As a result, the same value may accept a wide, shallow collection as WKT but reject it as WKB. For GeoJSON, the limit is not applied at all, since GDAL parses that input type instead.

Increase this value (or set to None) only if you must accept legitimately deep geometries, since doing so reduces protection against fatal errors.

Klasser för formulärfältLink to this heading

GeometryFieldLink to this heading

class GeometryFieldLink to this definition

PointFieldLink to this heading

class PointFieldLink to this definition

LineStringFieldLink to this heading

class LineStringFieldLink to this definition

PolygonFieldLink to this heading

class PolygonFieldLink to this definition

MultiPointFieldLink to this heading

class MultiPointFieldLink to this definition

MultiLineStringFieldLink to this heading

class MultiLineStringFieldLink to this definition

MultiPolygonFieldLink to this heading

class MultiPolygonFieldLink to this definition

GeometryCollectionFieldLink to this heading

class GeometryCollectionFieldLink to this definition

Widgets för formulärLink to this heading

GeoDjango-formulärwidgets gör att du kan visa och redigera geografiska data på en visuell karta. Observera att ingen av de för närvarande tillgängliga widgetarna stöder 3D-geometrier, därför kommer geometriska fält att använda en Textarea-widget för sådana data.

Widget-attributLink to this heading

GeoDjango widgets är mallbaserade, så deras attribut skiljer sig mest från andra Django widget-attribut.

BaseGeometryWidget.base_layerLink to this definition

A string that specifies the identifier for the default base map layer to be used by the corresponding JavaScript map widget. It is passed as part of the widget options when rendering, allowing the MapWidget to determine which map tile provider or base layer to initialize (default is None).

BaseGeometryWidget.geom_typeLink to this definition

OpenGIS geometrityp, som vanligtvis anges av formulärfältet.

BaseGeometryWidget.map_sridLink to this definition

SRID-kod som används av kartan (standard är 4326).

BaseGeometryWidget.display_rawLink to this definition

Booleskt värde som anger om en textarea som visar den serialiserade representationen av den aktuella geometrin är synlig, främst för felsökningsändamål (standard är False).

BaseGeometryWidget.supports_3dLink to this definition

Anger om widgeten stöder redigering av 3D-data (standard är False).

BaseGeometryWidget.template_nameLink to this definition

Den mall som används för att rendera kartwidgeten.

Du kan skicka widgetattribut på samma sätt som för alla andra Django-widgetar. Till exempel:

Code
from django.contrib.gis import forms


class MyGeoForm(forms.Form):
    point = forms.PointField(widget=forms.OSMWidget(attrs={"display_raw": True}))

Widget-klasserLink to this heading

BaseGeometryWidget

class BaseGeometryWidgetLink to this definition

This is an abstract base widget containing the logic needed by subclasses. You cannot directly use this widget for a geometry field. Note that the rendering of GeoDjango widgets is based on a base layer name, identified by the base_layer class attribute.

OpenLayersWidget

class OpenLayersWidgetLink to this definition

This is the default widget used by all GeoDjango form fields. Attributes are:

base_layerLink to this definition

nasaWorldview

template_nameLink to this definition

gis/openlayers.html.

map_sridLink to this definition

3857

OpenLayersWidget and OSMWidget include the ol.js and ol.css files hosted on the cdn.jsdelivr.net content-delivery network. These files can be overridden by subclassing the widget and setting the js and css properties of the inner Media class (see Tillgångar som en statisk definition).

OSMWidget

class OSMWidgetLink to this definition

This widget specialized OpenLayersWidget and uses an OpenStreetMap base layer to display geographic objects on. Attributes are:

base_layerLink to this definition

osm

default_latLink to this definition
default_lonLink to this definition

Standardvärdet för centrets latitud och longitud är 47 respektive 5, vilket är en plats i östra Frankrike.

default_zoomLink to this definition

Standardzoomen för kartan är 12.

The OpenLayersWidget note about using external assets also applies here. See also this FAQ answer about https access to map tiles.

Customizing the base layer used in OpenLayers-based widgetsLink to this heading

To customize the base layer displayed in OpenLayers-based geometry widgets, define a new layer builder in a custom JavaScript file. For example:

path-to-file.js
JavaScript
 MapWidget.layerBuilder.custom_layer_name = function () {
     // Return an OpenLayers layer instance.
     return new ol.layer.Tile({source: new ol.source.<ChosenSource>()});
 };

Then, subclass a standard geometry widget and set the base_layer:

Code
from django.contrib.gis.forms.widgets import OpenLayersWidget


class YourCustomWidget(OpenLayersWidget):
    base_layer = "custom_layer_name"

    class Media:
        js = ["path-to-file.js"]