差分

ナビゲーションに移動 検索に移動

Mapsuiでピンを打つ

290 バイト追加, 2022年11月11日 (金) 07:12
ページの作成:「 MapViewのPinsに追加するだけ。 <source lang="csharp"> var pin = new Pin() { Position = new Position(43.05566513099275, 141.35331805086304), Type = PinTy…」

MapViewのPinsに追加するだけ。

<source lang="csharp">
var pin = new Pin() {
Position = new Position(43.05566513099275, 141.35331805086304),
Type = PinType.Pin,
Label = "Susukino",
Address = "Zero point",
};

mapView.Pins.Add( pin );
</source>

[[category: Mapsui]]

案内メニュー