Description
Map pins have the ability to show an information window when clicked. Please provide a way to show this information window programmatically.
Public API Changes
Pin pin = new()
{
Label = "some label"
Address = "123 A Street"
Type = PinType.Place,
Location = new Location(-36, 144);
};
map.Pins.Add(pin);
pin.ShowInformationWindow(); //New method to be added
Intended Use-Case
I am showing a map with lots of pins representing particular items of interest. When a user selects a name from a drop down list, if that location has a pin present I want to highlight it by showing the information window , i.e. as if the user had clicked on it. There does not seem to be any way to do this at the moment.
Description
Map pins have the ability to show an information window when clicked. Please provide a way to show this information window programmatically.
Public API Changes
Intended Use-Case
I am showing a map with lots of pins representing particular items of interest. When a user selects a name from a drop down list, if that location has a pin present I want to highlight it by showing the information window , i.e. as if the user had clicked on it. There does not seem to be any way to do this at the moment.