@ckausik ,
Honestly my apologies.
HOWEVER, I`ve done it mate, please, did you TRY that before repeat (what all of us “know”), that being native it cannot be inserted into a group?
Please, have a try.
PS: Im posting below a snippet code of mine that Ive been using and released on iOS.
[lua]-- Create a native MapView (requires XCode Simulator build or device build)
– You can create multiple maps, if you like…
myMap = native.newMapView( 7, 23, 310, 210)
myMap.mapType = “normal” – other mapType options are “satellite” or “hybrid”
– The MapView is just another Corona display object, and can be moved or rotated, etc.
myMap.x = display.contentWidth / 2
myMap.y = 130
– Initialize map to a real location, since default location (0,0) is not very interesting
myMap:setCenter( 37.331692, -122.030456 )
g:insert(myMap)[/lua]
PS2: Ive been using this code above combined together the TabView example that Coronas Sample Code have. (from 706 corona builds) [import]uid: 89165 topic_id: 21066 reply_id: 85378[/import]