@@ -447,8 +447,8 @@ def add_hillshade_layer(
447447 """
448448 Add a hillshade layer
449449
450- :param str url: URL of the hillshade layer
451- :param str name: The name that will be used for the object in the document, defaults to "Hillshade Layer"
450+ :param url: URL of the hillshade layer
451+ :param name: The name that will be used for the object in the document, defaults to "Hillshade Layer"
452452 :param attribution: The attribution.
453453 """
454454 if urlParameters is None :
@@ -638,9 +638,9 @@ def create_color_expr(
638638 """
639639 Create a color expression used to style the layer
640640
641- :param Dict color_stops: Dictionary of stop values to [r, g, b, a] colors
642- :param float band: The band to be colored, defaults to 1.0
643- :param str interpolation_type: The interpolation function. Can be linear, discrete, or exact, defaults to 'linear'
641+ :param color_stops: Dictionary of stop values to [r, g, b, a] colors
642+ :param band: The band to be colored, defaults to 1.0
643+ :param interpolation_type: The interpolation function. Can be linear, discrete, or exact, defaults to 'linear'
644644 """
645645
646646 if interpolation_type not in ["linear" , "discrete" , "exact" ]:
@@ -777,7 +777,7 @@ def clear_filters(self, layer_id: str):
777777 """
778778 Clear filters on a layer
779779
780- :param str layer_id: The ID of the layer to clear filters from
780+ :param layer_id: The ID of the layer to clear filters from
781781 """
782782 layer = self ._layers .get (layer_id )
783783
0 commit comments