I wish to open a popup next to a map pin (when pressed), but cannot figure out how to get the screen position of the Pin.
Adding the Pins to the map works fine:
map.Pins.Add(nameOfPin);
创建活动手,也是直截了当的:
nameOfPin.MarkerClicked += OnPinClickedAsync;
下面的活动手应开放Pin的旁边,但我不能获得Pins的屏幕位置。 地图位置包含在标语中,但只要我能知道,屏幕位置就不是。
async void OnPinClickedAsync(object? sender, PinClickedEventArgs args) { var selectedPin = (Pin)sender; . . .and then what?? How to get the Pins screen position (Android/iOS) }
谁能帮助pl?
PS。 我试图补充这次活动所创造的Pin物体的所有信息,但找不到刺丝屏的位置。