0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

osmdroid を使ってAndroid の OpenStreetMap 地図のマーカーの画像を変更する

Last updated at Posted at 2019-02-07

osmdroid を使って Android の OpenStreetMap に マーカーを表示する
の続きです

マーカーの画像を変更する

OverlayItem には マーカーの画像を変更するをメソッドがある

OverlayItem#setMarker(Drawable marker) 

下記のように、マーカーのリストを生成する

drawable markerIcon = get.Resources().getDrawable(R.drawable.marker_new);

    List<OverlayItem> items = new ArrayList<>();

    OverlayItem item = new OverlayItem(タイトル, 説明, new GeoPoint(緯度, 経度));
        item.setMarker( markerIcon );

    items.add(item);

スクリーンショット

マーカーごとに異なる画像を設定した例
markers_custom_icon.png

github にソースを公開した

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?