I am using basic mapView example provided by Corona to show “titles” for markers but I cant see any title for markers when installed on Android.
The following is only an extract of the code provided by Corona.
local mapLocationHandler = function( event ) if event.isError then -- Location name not found. native.showAlert( "Error", event.errorMessage, { "OK" } ) else -- Move map so this location is at the center -- (The final parameter toggles map animation, which may not be visible if moving a large distance) myMap:setCenter( event.latitude, event.longitude, true ) -- Add a pin to the map at the new location markerTitle = "Location " .. locationNumber locationNumber = locationNumber + 1 myMap:addMarker( event.latitude, event.longitude, { title=markerTitle, subtitle=inputField.text } ) end end