0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Leafletのマーカーを変更する

Posted at

マーカー画像を読み込む

マーカー画像を読み込んでマップに登録する。
画像読み込み時にサイズとアンカー位置を設定する。

import imageAetheryte from '/public/eorzea_map/aetheryte.png';

const aetheryteIcon = L.icon({
  iconUrl: imageAetheryte.src,
  iconSize: [35, 35],
  iconAnchor: [17.5, 17.5],
});
L.marker(L.latLng(-128, 128), {
  icon: aetheryteIcon,
}).addTo(map);
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?