How To Change Zoom In/Zoom Out Default Setting In native.newMapView

hi guys, i’m currently testing map scene with native.newmapview here:

http://docs.coronalabs.com/api/library/native/newMapView.html

but I dont know how to change default zoom in/zoom out setting on my map scene page. This is what I’m talking about:

scuoi8.jpg

as you can see above, the marker is way too far (zoomed out) from what I want my viewers to see. I want them to see below screenshot by default:

6syx39.jpg

basically I want the map scene to be “zoomed in” by default. I know the end users can just zoom in the map by themselves but I want to show them the second screenshot by default instead of them zooming in manually. How to do that?

[lua]

map:setRegion( lat, lon,0.001,0.001 ) – last two parameters are zoom level

[/lua]

ok thanks, it works!

[lua]

map:setRegion( lat, lon,0.001,0.001 ) – last two parameters are zoom level

[/lua]

ok thanks, it works!