jxmorris12 / PokemonGo-Finder

Live visualization of all the pokemon in your area... and more!
GNU General Public License v3.0
171 stars 43 forks source link

Notifications cleaner but won't show on Google Maps #31

Closed paperc07 closed 7 years ago

paperc07 commented 7 years ago

It's definitely cleaner recieveing the pushbullet notifications, but now when I click on the generated link it doesn't put anything on my Google map app on my phone it was working yesterday.

bobsage123 commented 7 years ago

Same here. It opens to a blank google maps.

LukeTweed commented 7 years ago

If you replace with the following code in notifier.py, the link should work again. Not sure what fix they will implement but this works on the notification.

Make sure you use 4 spaces instead of TAB as well. Good luck out there! Line 58: replace: google_maps_link = 'http://maps.google.com/maps/place/{}/@{},{}z'.format(latLon, latLon, 20) with : google_maps_link = 'http://maps.google.com/maps?q={}&{}z'.format(latLon, 20);

paperc07 commented 7 years ago

wow thank you so much @LukeTweed

bobsage123 commented 7 years ago

Worked perfectly @LukeTweed. Thanks!

jxmorris12 commented 7 years ago

thanks dude

jxmorris12 commented 7 years ago

fixed this