Posts

Showing posts from 2018

Add all 10 fingers for Apple TouchID & Passcode

Image
I found this little trick when I walk through the iOS settings page. 1. Just go to the Touch ID & Passcode setting page. 2. Then Click the Add a Fingerprint (You have 5 Fingerprints to add ) and try to add fingers. Please put same finger two or three times at once. Some time will say  move your finger slightly between scans. 3.Then comes new window with title Adjust Your Grip - Keep going to capture the edges of your print and Press Continue and try to add same fingers which you enter in step two. (Hint : after putting fingers if you want to check what finger in the finger print list just put your thumb on the finger print scanner and it will highlight the correct finger print index.)

Google map api - use multiple keywords in place searches

Image
In order to google Place Search   and Place Library documentation there no option to use multiple keywords for searching. Therefore I have done this; I've created two PlaceService objects because I need to look at 'Pizza Hut' and 'KFC' both in single click. var service = new google.maps.places.PlacesService(map);             service.nearbySearch({                 location: pyrmont,                 radius: 50000,                 keyword: ['KFC']             }, callback); var service2 = new google.maps.places.PlacesService(map);             service2.nearbySearch({                 location: pyrmont,                 radius: 50000,                 keyword: ['Pizzahut']             }, callback); and It's working well. KFC Layer KFC + Pizza Hut Layer KFC + Pizza Hut + Subway Layer Full source code: <!DOCTYPE html> <html> <head>     <title>         Map     </title>     <script async