1
var pin = new Pin
{
Type = PinType.Place,
Position = new Position(currentlat, currentlong),
Label = "My Current Location ",
Address = "My Current Location "
};
map.Pins.Add(pin);
ここでピンをクリックするとラベルのアドレスが表示されます。しかし、私はそれをクリックせずにピンにラベルを表示したい。ピンのラベルを(地図上で)クリックせずに表示する方法Xamarin.Forms pcl
これに関する解決策はありますか? – Antho