Titanium JIRA Archive
Appcelerator Modules (MOD)

[MOD-2284] Map: iOS: Zoom in the SATELLITE map will lead to a black white screen

GitHub Issuen/a
TypeBug
PriorityNone
StatusClosed
ResolutionDuplicate
Resolution Date2016-08-24T01:29:56.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsMap
Labelsn/a
ReporterShuo Liang
AssigneeUnknown
Created2016-08-24T00:56:41.000+0000
Updated2018-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

FileDateSize
File1471996532150.png2016-08-24T00:57:50.000+0000319273

Comments

  1. Chee Kiat Ng 2016-08-24

    Duplicate of TIMOB-23784
  2. Eric Merriman 2018-08-06

    Closing as a duplicate. If this is in error, please reopen.

JSON Source