I have a view configured with delegate and all working. I have noticed two things which are not working quite how I would expect.
First, when calling the new map view, I have been successful using the following code to display the map.
WatchUi.pushView(new TestMapView(), new TestMapViewDelegate(), WatchUi.SLIDE_IMMEDIATE);
If I try to use switchToView, the map simulator will not render the map view. For example the following change will not draw the mapview
WatchUi.switchToView(new TestMapView(), new TestMapViewDelegate(), WatchUi.SLIDE_IMMEDIATE);
I thought I was doing something wrong with the command, but was able to use both options with a normal view class and delegate. Has anyone been able to use the switchToView with the new MapView or MapTrackView?
Second observation, if I add text over the top of the map with the background color set to transparent, it will put a box around the text and not show the map underneath. See the attached picture. So it appears that item drawn on top of the map don't really have a transparent background. Am I missing something?