たくさんのマーカーが付いた地図を表示するアプリを書いています。マーカーを動的にする (動的コンテンツを表示する) 必要があります。マーカーの内容は動的であるため、各マーカーのサイズは異なります。
これは、「さまざまな状態に対してさまざまなマーカーを返すことができます。さまざまなマーカーはさまざまな境界を持つことができます」というドキュメントでこれを見つけました。ここ: https://developers.google.com/maps/documentation/android/reference/com/google/android/maps/OverlayItem#getMarker(int)
これは、同じオーバーレイ上の複数のマーカーが異なるサイズになる可能性があることを意味すると思います。あれは正しいですか?
オーバーレイに ArrayList があります (BalloonItemizedOverlay を拡張します)。オーバーレイの createItem() メソッドは次のようになります。
@Override
protected OverlayItem createItem(final int index)
{
final Person person = people.get(index);
final GeoPoint gp = new GeoPoint(person.getLat(), person.getLng());
final OverlayItem oi = new OverlayItem(gp, person.getName(), person.getName());
oi.setMarker(new PersonDrawable(defaultMarker, person));
return oi;
}
次にPersonDrawable
、背景画像として 9 パッチを持ち、その上にテキストを描画するドローアブルがあります。
public PersonDrawable(final Drawable iBackground, final Person person)
{
background = iBackground;
text = person.getName();
padding = new Rect();
if (background instanceof NinePatchDrawable)
{
// This is getting hit, and just sets the value of the padding
final NinePatchDrawable ninePatch = (NinePatchDrawable) background;
ninePatch.getPadding(padding);
}
// set the bounds of the marker
bounds = background.getBounds();
paint = new Paint();
paint.setColor(Color.rgb(255, 255, 255));
paint.setFakeBoldText(true);
paint.setTextSize(30);
// find the bounds of the text
final Rect textBounds = new Rect();
paint.getTextBounds(text, 0, text.length(), textBounds);
// set the left and right bounds to that of the text plus the padding (then center it)
bounds.left = 0 - (textBounds.width() / 2) - padding.left;
bounds.right = 0 + (textBounds.width() / 2) + padding.right;
// set the bounds of the drawable
setBounds(bounds);
}
@Override
public void draw(final Canvas canvas)
{
// when it's time to draw, draw the background
background.draw(canvas);
// then draw the text within the padding
canvas.drawText(text, bounds.left + padding.left, bounds.bottom - padding.bottom, paint);
}
各マーカーには別個の境界セットがあり、オーバーレイに描画された後でもその境界は異なります。(MapView
またはOverlay
) は からのオブジェクトを再利用していませんcreateItem()
。ただし、Overlay
常に 1 つのマーカーを選択し、それがすべてのマーカーのサイズであると想定しているようです。それはただの振る舞いですか?マーカーごとに異なる境界を尊重させるためにできることはありますか?
より大きなマーカーを選択することを決定したときの写真は次のとおりです。
ただし、小さい方のマーカーをサイズとして使用することを選択した場合: