「Mapsuiでピンを打つ」の版間の差分

提供: MonoBook
ナビゲーションに移動 検索に移動
(ページの作成:「 MapViewのPinsに追加するだけ。 <source lang="csharp"> var pin = new Pin() { Position = new Position(43.05566513099275, 141.35331805086304), Type = PinTy…」)
(相違点なし)

2022年11月11日 (金) 07:12時点における版

MapViewのPinsに追加するだけ。

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

mapView.Pins.Add( pin );