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?

More than 1 year has passed since last update.

なりかくんAdvent Calendar 2023

Day 25

[25日目] Leaflet.js 自分なりのメモ

Posted at

こんにちは、なりかくんと申します。
この記事はなりかくん Advent Calender 2023の25日目の記事です。メリクリ!!(30日に言ってる)

今回は Leaflet.js で自分がよく使うコードをまとめます。

地球ではない地図

mapにcrsでSimpleを指定する。
https://leafletjs.com/examples/crs-simple/crs-simple.html

L.map('map',{
        crs:L.CRS.Simple
})

画像のマーカー

画像のマーカーを作りたいときに使う。

let icon = L.icon({
        iconUrl: "Icon URL",
        iconSize: [50, 50],
    });
}
new L.marker([x, y], {
    icon: icon,
});

グループレイヤーをリセット

レイヤーを削除ではなく中身のマーカーなどをすべて削除する。

let group = L.layerGroup();
group.eachLayer(function (layer) {
    map.removeLayer(layer);
});
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?