[MOD-2284] Map: iOS: Zoom in the SATELLITE map will lead to a black white screen
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | None |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2016-08-24T01:29:56.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Map |
Labels | n/a |
Reporter | Shuo Liang |
Assignee | Unknown |
Created | 2016-08-24T00:56:41.000+0000 |
Updated | 2018-08-06T17:41:10.000+0000 |
Description
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.Attachments
File | Date | Size |
---|---|---|
File1471996532150.png | 2016-08-24T00:57:50.000+0000 | 319273 |