Changeset 839
- Timestamp:
- 08/14/07 12:28:49
- Files:
-
- PCL/trunk/PCL-Core/cartography/data/ows.py (modified) (3 diffs)
- PCL/trunk/PCL-Core/cartography/styles/interfaces.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PCL/trunk/PCL-Core/cartography/data/ows.py
r544 r839 95 95 return None 96 96 97 def source(self, typename, ows_srs=None, ows_format=None ):98 return WMSRasterSource(self, typename, ows_srs, ows_format )97 def source(self, typename, ows_srs=None, ows_format=None, ows_style=None): 98 return WMSRasterSource(self, typename, ows_srs, ows_format, ows_style) 99 99 100 100 def info(self, typename): … … 109 109 #implements(IOWSMapRequest) 110 110 111 def __init__(self, store, typename, ows_srs=None, ows_format=None ):111 def __init__(self, store, typename, ows_srs=None, ows_format=None, ows_style=None): 112 112 """Initialize""" 113 113 self.store = store … … 115 115 self.ows_srs = ows_srs 116 116 self.ows_format = ows_format 117 self.ows_style = ows_style 117 118 118 119 PCL/trunk/PCL-Core/cartography/styles/interfaces.py
r544 r839 48 48 ows_srs = Attribute("Request SRS, like 'EPSG:4326' (string)") 49 49 50 ows_style = Attribute("Request style") 51 50 52 51 53 class ILayer(Interface):
