[TIMOB-13880] Android: User Location is not marked with pin. Works fine on iOS.
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Open |
Resolution | Unresolved |
Affected Version/s | Release 3.1.1 |
Fix Version/s | n/a |
Components | Android |
Labels | n/a |
Reporter | Paras Mishra |
Assignee | Unknown |
Created | 2013-05-16T10:37:15.000+0000 |
Updated | 2018-02-28T20:04:06.000+0000 |
Description
Android: User Location is not marked with pin.Works fine on iOS.
Steps to reproduce:
1. Run the following app
var _window=Ti.UI.createWindow({
backgroundColor:'white'
});
Titanium.UI.setBackgroundColor('#000');
_window.title='Test';
_window.backgroundColor='#000';
_window.exitOnClose=true;
_window.add(Ti.Map.createView({
userLocation:true
}));
_window.open();
2. Check the user's current location.
Expected:
User's location is pointed by pin on the screen .
Actual:
User's location is not marked with pin.
No comments