Hello!
I can put in the map some pins "places" now i need when the user touch the place, send the user to other window..
How i can get the event touch in the pin?
BR!
One question that works fine for touch devices but in case of non-touch devices elementClicked is not getting called. Any way of capturing place on navigateClick
Take a look to https://bitbucket.org/nutiteq/blackberry-map-samples/changeset/0f7f468122b6 . There are two things - adding OnMapElementListener and corresponding actions (which should be done for you already), and defining that navigationClick emits keypress+release with code KEY_ENTER, which is mapped to ControlKeys.SELECT_KEY in KeyMapping of MapComponent.
There is interface OnMapElementListener, which has event "elementClicked()". You should implement the interface and tell MapComponent to use it with mapComponent.setOnMapElementListener();
/JaakL