Maps SDK for iOS v3.10.0 ベータ版では、以下の新機能をお試しいただけます。
- クラウドベースのマップのスタイル設定/地図のカスタマイズ
- ポリラインのカスタマイズ: スタンプ型ポリライン
クラウドベースのマップのスタイル設定/地図のカスタマイズ(ベータ版)
カスタム スタイルを作成して、トークンを使用してアプリやウェブサイトの地図に割り当てられるようになりました。詳しくは、iOS マップのカスタマイズの概要をご覧ください。
ポリラインのカスタマイズ: スタンプ型ポリライン
GMSTextureStyle
を使用すると、ポリラインの外観をビットマップ テクスチャの反復パターンに設定できます。画像は線全体をカバーしますが、端点と頂点の周囲は切り捨てられます。
スタンプ型ポリラインを作成するには、GMSTextureStyle
の GMSStampStyle
を作成します。次に、以下のように stampStyle
を使用して、シェイプのオプション オブジェクトでこのプロパティを設定します。
Swift
let path = GMSMutablePath() path.addLatitude(-37.81319, longitude: 144.96298) path.addLatitude(-31.95285, longitude: 115.85734) let polyline = GMSPolyline(path: path) let redWithStamp = GMSStrokeStyle.solidColor(.red) let image = UIImage(named: "imageFromBundleOrAsset")! // Image could be from anywhere redWithStamp.stampStyle = GMSTextureStyle(image: image) let span = GMSStyleSpan(style: redWithStamp) polyline.spans = [span] polyline.map = mapView
Objective-C
GMSMutablePath *path = [GMSMutablePath path]; [path addLatitude:-37.81319 longitude:144.96298]; [path addLatitude:-31.95285 longitude:115.85734]; GMSPolyline *polyline = [GMSPolyline polylineWithPath:path]; GMSStrokeStyle *redWithStamp = [GMSStrokeStyle solidColor:[UIColor redColor]]; UIImage *image = [UIImage imageNamed:@"imageFromBundleOrAsset"]; // Image could be from anywhere redWithStamp.stampStyle = [GMSTextureStyle textureStyleWithImage:image]; GMSStyleSpan *span = [GMSStyleSpan spanWithStyle:redWithStamp]; polyline.spans = @[span]; polyline.map = mapView;