- Seems that MapView can't be implemented on the main view for application, inherited class can't be returned from getInitialView of Application
- the way setScreenVisibleArea is working seems to be completely wrong - at least in simulator (haven't yet pushed any of my tries on my watch)
it seems to modify visible map area instead of setting area of screen to show the map
to be more precise - I'm setting area of interest:
var top_left = new Position.Location({:latitude => 50.01, :longitude =>21.8, :format => :degrees});
var bottom_right = new Position.Location({:latitude => 49.9, :longitude =>22.2, :format => :degrees});
MapView.setMapVisibleArea(top_left, bottom_right);
Then setting something like:
MapView.setScreenVisibleArea(0, 0, 120, 10);
Would result in showing of half of the Europe on full screen instead (that's my guess at least) of map area on small box of size 120x10 in upper left corner