I have been trying to add a map maker and no matter what I try it does not seem to add one. Here is the code I currently have, do i need to include all that markerlistener nonsense for it to work?
-- Create a native map view myMap = native.newMapView( display.contentCenterX, display.contentHeight-315, 280, 200 ) -- Display map as vector drawings of streets (other options are "satellite" and "hybrid") myMap.mapType = "standard" -- Initialize map to a real location myMap:setCenter( 37.331692, -122.030456 ) myMap:getUserLocation() myMap:addMarker( 37.332511, -122.029619)