I find the map marker functionality a bit lacking. I would really like a way to manually control the marker popup (visibility). Maybe with two methods as shown below:
local myMap = native.newMapView( 0, 0, 300, 220 ) local options = { title="Displayed Title", subtitle="subtitle text" } local markerID = myMap:addMarker( 37.331692, -122.030456, options ) -- Nice to have functions: myMap:showMarkerPopup( markerID, [hide delay] ) myMap:hideMarkerPopup( markerID )