Commit 5489fb95 authored by Ratnadeep Rajendra Kharade's avatar Ratnadeep Rajendra Kharade
Browse files

Merge branch '69-add-launcher-icon-for-application-on-android' into 'master'

Resolve "Add launcher icon for application on android"

Closes #69

See merge request 92khra1mst/hft_awado_app!61
parents 43fffe7e 1d6c6eb2
...@@ -278,7 +278,9 @@ export class HirebikePage implements OnInit { ...@@ -278,7 +278,9 @@ export class HirebikePage implements OnInit {
allNoGoAreas.push(routes[i].actualNoGoAreas[j]); allNoGoAreas.push(routes[i].actualNoGoAreas[j]);
} }
} }
finalNoGoAreas = [...new Set(allNoGoAreas)]; //finalNoGoAreas = [...new Set(allNoGoAreas)];
let x = (allNoGoAreas) => allNoGoAreas.filter((v,i) => allNoGoAreas.indexOf(v) === i)
finalNoGoAreas = x(allNoGoAreas);
//let group = new H.map.Group(); //let group = new H.map.Group();
//this.addRectangleToMap(); //this.addRectangleToMap();
for (let i = 0; i < finalNoGoAreas.length; i++){ for (let i = 0; i < finalNoGoAreas.length; i++){
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment