Home | Trees | Indices | Help |
---|
|
django.contrib.gis.db.models.Model --+ | Feature --+ | SpatialFeature
Abstract Model used for representing user-generated geometry features. Inherits from Feature and adds geometry-related methods/properties common to all geometry types. ====================== ============================================== Attribute Description ====================== ============================================== ``user`` Creator ``name`` Name of the object ``date_created`` When it was created ``date_modified`` When it was last updated. ``manipulators`` List of manipulators to be applied when geom is saved. ====================== ==============================================
|
|||
Meta |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
|
|||
Inherited from |
|
|||
manipulators = models.TextField(verbose_name= "Manipulator Lis
|
|||
Inherited from |
|
|
Basic KML representation of the feature geometry
|
Fully-styled KML placemark representation of the feature. The Feature's kml property MUST
|
Must return a string with one or more KML Style elements whose id's may be referenced by relative URL from within the feature's .kml string In any given KML document, each *unique* kml_style string will get included so don't worry if you have 10 million features with "blah-default" style... only one will appear in the final document and all the placemarks can refer to it. BEST TO TREAT THIS LIKE A CLASS METHOD - no instance specific vars.
|
This method contains all the logic to determine which manipulators get applied to a feature If self.manipulators doesnt exist or is null or blank, apply the required manipulators (or the NullManipulator if none are required) If there is a self.manipulators string and there are optional manipulators contained in it, apply the required manipulators PLUS the specified optional manipulators
|
|
manipulators
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Oct 30 11:31:02 2012 | http://epydoc.sourceforge.net |