マーカーのカスタマイズ
以前のバージョンの Consumer SDK では、Consumer SDK の MarkerStyleOptions
オブジェクトを使用して、マーカー スタイルのプロパティをカスタマイズしていました。Consumer SDK v1.0 では、Maps SDK の MarkerOptions
オブジェクトを直接使用します。
// Centering the marker anchor at (0.5, 0.5) is recommended.
// For vehicle markers, set flat to true to allow the vehicle marker to freely
// rotate flat on the map (rather than always have it face the camera).
MarkerOptions vehicleMarkerOptions = new MarkerOptions()
.flat(true)
.anchor(0.5f, 0.5f)
.icon(vehicleIcon)
.zIndex(1.0f);
consumerMapStyle.setMarkerStyleOptions(MarkerType.TRIP_VEHICLE);
スタイルがまだ設定されていない場合、またはスタイル オプションが null
に設定されている場合、ConsumerMapStyle
は、指定されたマーカータイプに対して SDK で指定されたデフォルトのスタイル オプションを返します。
// ConsumerMapStyle returns the SDK-set default style options if none has been set yet.
MarkerOptions defaultPickupPointStyleOptions = consumerMapStyle.getMarkerStyleOptions(MarkerType.PICKUP_POINT);
// Setting the style to null reverts the style back to the SDK-set default properties.
consumerMapStyle.setMarkerStyleOptions(MarkerType.PICKUP_POINT, /* markerStyleOptions= */ null);
MarkerOptions defaultPickupPointStyleOptions = consumerMapStyle.getMarkerStyleOptions(MarkerType.PICKUP_POINT);
新しいスタイルを一から作成しない場合は、デフォルトのスタイルを変更できます。次の例では、集荷アイコンのみを変更し、残りのマーカー オプションには SDK のデフォルト設定を使用しています。
// getMarkerStyleOptions returns the default pickup point style options, since
// the custom style hasn't been set yet.
MarkerOptions pickupPointStyleOptions =
consumerMapStyle.getMarkerStyleOptions(MarkerType.PICKUP_POINT);
// Modify the icon value and set the style.
consumerMapStyle.setMarkerStyleOptions(
pickupPointStyleOptions.icon(pickupPointIcon));
ポリラインのカスタマイズ
以前のバージョンの Consumer SDK では、Consumer SDK の PolylineStyleOptions
オブジェクトを使用してポリライン スタイルのプロパティをカスタマイズしていました。Consumer SDK v1.0 では、Maps SDK の PolylineOptions
オブジェクトを使用して基本ポリライン スタイルのプロパティをカスタマイズし、TrafficStyle
オブジェクトを使用してポリラインの交通色をカスタマイズします。
交通量ポリラインは、Consumer SDK v1.0 のアルファ版で利用できます。交通量が表示されている場合、ベースのポリラインの色は交通量の色でオーバーライドされます。トラフィックはデフォルトでは表示されません。TrafficStyle
の設定されていないフィールドには、SDK で指定されたデフォルト値が入力されます。
// PolylineOptions is from Maps SDK
PolylineOptions polylineOptions = new PolylineOptions()
.color(color)
.width(width)
.geodesic(geodesic)
.startCap(startCap)
.endCap(endCap)
.zIndex(zIndex);
consumerMapStyle.setPolylineStyleOptions(
PolylineType.ACTIVE_ROUTE, polylineOptions);
// TrafficStyle is from ConsumerSDK
TrafficStyle trafficStyle = TrafficStyle.builder()
.setTrafficVisibility(true)
.setTrafficColor(SpeedType.NO_DATA, Color.GREY)
.setTrafficColor(SpeedType.NORMAL_VALUE, Color.BLUE)
.setTrafficColor(SpeedType.SLOW_VALUE, Color.ORANGE)
.setTrafficColor(SpeedType.TRAFFIC_JAM, Color.RED)
.build();
consumerMapStyle.setPolylineTrafficStyle(PolylineType.ACTIVE_ROUTE, trafficStyle);
ConsumerMapStyle
は、まだ設定されていない場合や、スタイル オプションが null
に設定されている場合、指定されたポリライン タイプに対する SDK のデフォルトのスタイル オプションを返します。これは、ベースの PolylineOptions
と TrafficStyle
の両方に適用されます。
// ConsumerMapStyle returns the SDK's default style options if none has been set yet.
PolylineOptions defaultActiveRouteStyleOptions = consumerMapStyle.getPolylineStyleOptions(PolylineType.ACTIVE_ROUTE);
// Setting the style to null reverts the style back to the SDK-set default properties.
consumerMapStyle.setPolylineStyleOptions(
PolylineType.ACTIVE_ROUTE, /* polylineStyleOptions= */ null);
PolylineOptions defaultActiveRouteStyleOptions =
consumerMapStyle.getPolylineStyleOptions(PolylineType.ACTIVE_ROUTE);
新しいスタイルを一から作成しない場合は、デフォルトのスタイルを変更できます。次の例では、ベースのアクティブ ルート ポリラインの色のみを変更し、残りのマーカー オプションには SDK のデフォルトのスタイル設定を使用します。
// Only customize the remaining route polyline color.
PolylineOptions remainingRouteStyleOptions =
consumerMapStyle.getPolylineStyleOptions(PolylineType.REMAINING_ROUTE);
consumerMapStyle.setPolylineStyleOptions(
remainingRouteStyleOptions.color(Color.DARK_BLUE));