AI-generated Key Takeaways
- 
          GMSTextureStyleis a polyline style that applies a repeating image pattern along a path defined byGMSStyleSpan.
- 
          It provides methods to create a texture style using a UIImageobject as the repeating pattern.
- 
          Both textureStyleWithImage:andinitWithImage:methods initialize a texture stamp style with the given image.
GMSTextureStyle
@interface GMSTextureStyle : GMSStampStyleA polyline style that draws a repeating image over a GMSStyleSpan.
- 
                  
                  Returns a texture stamp style with the given image. DeclarationObjective-C + (nonnull instancetype)textureStyleWithImage:(nonnull UIImage *)image;ParametersimageA UIImageobject to use as the stamp image.Return ValueAn initialized texture stamp style. 
- 
                  
                  Returns an initialized texture stamp style with the given image. DeclarationSwift init(image: UIImage)Objective-C - (nonnull instancetype)initWithImage:(nonnull UIImage *)image;ParametersimageA UIImageobject to use as the stamp image.Return ValueAn initialized texture stamp style.