55 |
self.issue(LAYER_VISIBILITY_CHANGED, self) |
self.issue(LAYER_VISIBILITY_CHANGED, self) |
56 |
|
|
57 |
def HasClassification(self): |
def HasClassification(self): |
58 |
"""Determine if this layer support classifications.""" |
"""Determine if this layer supports classifications.""" |
59 |
return False |
return False |
60 |
|
|
61 |
def HasShapes(self): |
def HasShapes(self): |
67 |
return self.projection |
return self.projection |
68 |
|
|
69 |
def SetProjection(self, projection): |
def SetProjection(self, projection): |
70 |
"""Set the layer's projection""" |
"""Set the layer's projection.""" |
71 |
self.projection = projection |
self.projection = projection |
72 |
self.changed(LAYER_PROJECTION_CHANGED, self) |
self.changed(LAYER_PROJECTION_CHANGED, self) |
73 |
|
|