{ "id": "174824", "key": "MOD-2587", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "10034", "key": "MOD", "name": "Appcelerator Modules", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2020-10-29T11:44:30.000+0000", "created": "2020-03-18T00:59:23.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "2020-Q3", "android", "map" ], "versions": [], "issuelinks": [ { "id": "58365", "type": { "id": "10020", "name": "Depends", "inward": "is dependent of", "outward": "depends on" }, "inwardIssue": { "id": "174955", "key": "MOD-2609", "fields": { "summary": "Android: After supporting lite mode for map example need to merged.", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Low", "id": "4" }, "issuetype": { "id": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false } } } } ], "assignee": { "name": "amaheshwari", "key": "amaheshwari", "displayName": "Akansha Maheshwari", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2020-10-29T11:44:31.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "13700", "name": "Map" } ], "description": "*Summary:*\r\nGoogle's Maps feature supports a \"lite mode\" which loads faster by only showing a single map image with limited end-user interaction support.\r\nhttps://developers.google.com/maps/documentation/android-sdk/lite\r\n\r\n*To-Do:*\r\nAdd support to our \"ti.map\" module's {{View}} type as a \"liteMode\" creation property.\r\n\r\n*Note:*\r\nThere is no iOS equivalent of this feature. This is Android only.\r\n", "attachment": [], "flagged": false, "summary": "Android: Add lite mode to \"ti.map\" module", "creator": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "closedSprints": [ { "id": 1209, "state": "closed", "name": "2020 Sprint 22", "startDate": "2020-10-27T02:33:00.000Z", "endDate": "2020-11-07T02:33:00.000Z", "completeDate": "2020-11-06T17:45:42.610Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "454729", "author": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~michael] has submitted the following PR:\r\nhttps://github.com/appcelerator-modules/ti.map/pull/268\r\n", "updateAuthor": { "name": "jquick", "key": "jquick", "displayName": "Joshua Quick", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2020-03-18T01:00:53.000+0000", "updated": "2020-03-18T01:00:53.000+0000" }, { "id": "455375", "author": { "name": "amaheshwari", "key": "amaheshwari", "displayName": "Akansha Maheshwari", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I have submitted the PR : https://github.com/appcelerator-modules/ti.map/pull/295 which includes the changes of https://github.com/appcelerator-modules/ti.map/commit/3ba7c7fd4f087919e6bd171ca7d1b7ec21eabffb and update example according to the liteMode", "updateAuthor": { "name": "amaheshwari", "key": "amaheshwari", "displayName": "Akansha Maheshwari", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2020-05-06T06:19:52.000+0000", "updated": "2020-05-06T06:19:52.000+0000" }, { "id": "457385", "author": { "name": "srai", "key": "srai", "displayName": "Saumya Rai", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Validate with below sample code. It looks fine.\r\n\r\n{code:java}\r\nvar win = Titanium.UI.createWindow({\r\n\tlayout:\"vertical\"\r\n});\r\nvar Map = require('ti.map');\r\n\r\nfunction createMap(liteMode) {\r\n\tvar map = Map.createView({\r\n\t\ttop: 10,\r\n\t\tright: 0,\r\n\t\twidth: Ti.UI.FILL,\r\n\t\theight: 200,\r\n\t\tliteMode: liteMode,\r\n\t\tregion: {\r\n\t\t\tzoom: 10,\r\n\t\t\tlatitude: 46.893234,\r\n\t\t\tlongitude: 1.346569,\r\n\t\t}\r\n\t});\r\n\tvar an = Map.createAnnotation({\r\n\t\ttitle: 'Title',\r\n\t\tlatitude: 46.893234,\r\n\t\tlongitude: 1.346569,\r\n\t})\r\n\tmap.addAnnotation(an);\r\n\twin.add(map);\r\n}\r\n\r\ncreateMap(true);\t// liteMode map\r\ncreateMap(false);\t// normal map\r\nwin.open();\r\n{code}\r\n", "updateAuthor": { "name": "srai", "key": "srai", "displayName": "Saumya Rai", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2020-10-29T11:44:10.000+0000", "updated": "2020-10-29T11:44:10.000+0000" } ], "maxResults": 3, "total": 3, "startAt": 0 } } }