I am using mapkit js. var map = new mapkit.Map('mymap', { center: center, cameraDistance: 300, showsZoomControl: true, showsPointsOfInterest: true, });
And after map initialized it come with some default POIs with icons like Apple map result. I want to get the POI info when clicking POI icons. For example, POI name, coordinates, address, ..., etc.
How should I do that? I tried addEventListener, but with no luck. What object will be returned when clicking POI icons?