Reproduce
1. Run the following code in a default mobile app.
var Map = require('ti.map');
var win = Titanium.UI.createWindow();
var mountainView = Map.createAnnotation({
latitude:37.390749,
longitude:-122.081651,
title:"Appcelerator Headquarters",
subtitle:'Mountain View, CA',
pincolor:Map.ANNOTATION_RED,
myid:1 // Custom property to uniquely identify this annotation.
});
var mapview = Map.createView({
mapType: Map.SATELLITE_TYPE,
region: {latitude:37.390749, longitude:-122.081651,
latitudeDelta:0.01, longitudeDelta:0.01},
animate:true,
regionFit:true,
userLocation:true,
annotations:[mountainView]
});
win.add(mapview);
win.open();
2. Once the app open, zoom in the map.
Expect Result
The map should be zoom in until stop in max level. Like the behaviour for normal-type of map.
Actual Result
black screen after zoom in couple of times.
Duplicate of TIMOB-23784
Closing as a duplicate. If this is in error, please reopen.