-
Member
Originally Posted by
Pokemonster
What is the line you entered for the location and login? Something wrong with the location as you can see.
C:\PoGo>example.py -u .... -p ..... -1 "53.234176, 10.443873" -st 5
-
Master Sergeant
Originally Posted by
Nairdaaa
C:\PoGo>example.py -u .... -p ..... -1 "53.234176, 10.443873" -st 5
-1 should be -l (Letter L but in lower case).
-
Post Thanks / Like - 1 Thanks
Nairdaaa (1 members gave Thanks to Pokemonster for this useful post)
-
Member
Originally Posted by
Pokemonster
As i said, open google maps in a webbrowser (not the flask google maps) and click on your location and you see the coordinates.
Everyone, go to the github for the newest version:
https://github.com/AHAAAAAAA/PokemonGo-Map
It is way better now. You can see the results while it is loading, and it is circular now. Just refresh your webpage sometimes. And it keeps searching, so you only need to press F5 in your browser and can leave the CMD in the background.
Is the latest update broken?
When i use it, Google Maps opens on Latitude/Longitude 0,0 and i see no Pokemon.
Also, is there a way to display at which time to pokemon was spawned in the tooltip?
-
Member
I know nothing about this language but can anyone modify this so that it shows the geocoordinate, please?
This taken from example.py line 435 to 454
for poke in visible:
pokename = pokemonsJSON[poke.pokemon.PokemonId - 1]['Name']
if args.ignore:
if pokename.lower() in ignore: continue
other = LatLng.from_degrees(poke.Latitude, poke.Longitude)
diff = other - origin
# print(diff)
difflat = diff.lat().degrees
difflng = diff.lng().degrees
time_to_hidden = poke.TimeTillHiddenMs
left = '%d hours %d minutes %d seconds' % time_left(time_to_hidden)
remaining = '%s remaining' % (left)
pid = str(poke.pokemon.PokemonId)
label = (
'<div style=\'position:float; top:0;left:0;\'><small><a href=\'http://www.pokemon.com/us/pokedex/'+pid+'\' target=\'_blank\' title=\'View in Pokedex\'>#'+pid+'</a></small> - <b>'+pokemonsJSON[poke.pokemon.PokemonId - 1]['Name']+'</b></div>'
'<center>'+remaining.replace('0 hours ','').replace('0 minutes ','')+'</center>'
)
if args.china:
poke.Latitude, poke.Longitude = transform_from_wgs_to_gcj(Location(poke.Latitude, poke.Longitude))
pokemons.append([poke.pokemon.PokemonId, label, poke.Latitude, poke.Longitude])
-
Master Sergeant
Originally Posted by
beck030
Is the latest update broken?
When i use it, Google Maps opens on Latitude/Longitude 0,0 and i see no Pokemon.
Also, is there a way to display at which time to pokemon was spawned in the tooltip?
It works here, what happens in your bat? and what is the rule you enter with your login and coordinates (replace login with XXXX). In the latest update your map should open and after the bat got some scans it should show monsters everytime you refresh your page. SO hit F5 sometimes and you will see pokemon.
-
Post Thanks / Like - 1 Thanks
beck030 (1 members gave Thanks to Pokemonster for this useful post)
-
Active Member

server issues? or my install?
-
Member
Originally Posted by
Pokemonster
It works here, what happens in your bat? and what is the rule you enter with your login and coordinates (replace login with XXXX). In the latest update your map should open and after the bat got some scans it should show monsters everytime you refresh your page. SO hit F5 sometimes and you will see pokemon.
Ok, Google Maps jumps to the correct location and i can see Pokemon when i hit F5. Thank you.
-
Contributor
Originally Posted by
awp2004

server issues? or my install?
I have the same issue
-
Active Member
Originally Posted by
awp2004

server issues? or my install?
server issues it seems..... I have a question, when I press f5 or refresh page in firefox it gives me a script error. Restarting browser plus scripts Works, but kinda annoying.
BTW, good Work!
-
Member
i got the newest version from github.. it all works fine they also put Gyms now to show ^^.. is there a way maybe to turn that off again? so that only pokemon are showing?
-
Member
Originally Posted by
awp2004

server issues? or my install?
Happens to me too. Is the account banned?
Originally Posted by
xbEg0nEx
i got the newest version from github.. it all works fine they also put Gyms now to show ^^.. is there a way maybe to turn that off again? so that only pokemon are showing?
Just comment out block the lines 523 to 534 like this:
"""for gym in gyms:
if gym[0] == 0: color = "white"
if gym[0] == 1: color = "rgba(0, 0, 256, .1)"
if gym[0] == 2: color = "rgba(255, 0, 0, .1)"
if gym[0] == 3: color = "rgba(255, 255, 0, .1)"
pokeMarkers.append(
{
'icon': 'static/forts/'+numbertoteam[gym[0]]+'.png',
'lat': gym[1],
'lng': gym[2],
'infobox': "<div style='background: "+color+"'>Gym owned by Team " + numbertoteam[gym[0]]
})
for stop in pokestops:
pokeMarkers.append(
{
'icon': 'static/forts/Pstop.png',
'lat': stop[0],
'lng': stop[1],
'infobox': "Pokestop"
})"""
-
Yesterday I got the thing in CMD completed to 100% went to 127.0.0.1:5000 and couldn't reach the site, trying again now but it won't even start loading in cmd. Any help?
-
Member
Hi all,
thanks for this nice, detailed guide but I have problems with the installation. I installed NOX on my younger cousin's laptop since he is confined to a wheelchair and loves Pokémon.
Until Step 9 I have no problems. But then it starts: I am not sure if I made step 9 right and I can not open the link which is in Step 10. INFO: I am living in Germany (sorry for my bad English btw) and I guess it's a proxy problem. Is there any chance I can open the link from Germany as well?
I hope anybody can help me, cause this "add-on" is brilliant.
-
Master Sergeant
Originally Posted by
S00ZUU
Hi all,
thanks for this nice, detailed guide but I have problems with the installation. I installed NOX on my younger cousin's laptop since he is confined to a wheelchair and loves Pokémon.
Until Step 9 I have no problems. But then it starts: I am not sure if I made step 9 right and I can not open the link which is in Step 10. INFO: I am living in Germany (sorry for my bad English btw) and I guess it's a proxy problem. Is there any chance I can open the link from Germany as well?
I hope anybody can help me, cause this "add-on" is brilliant.

If you can not open the link then step 9 is not ok. What does it says in your cmd? Unless you have some other localhost running on your device at the same port it should work. Has nothing to do with Germany.
Last edited by Pokemonster; 07-18-2016 at 09:17 AM.
-
Post Thanks / Like - 1 Thanks
S00ZUU (1 members gave Thanks to Pokemonster for this useful post)
-
Member
Originally Posted by
xbEg0nEx
i got the newest version from github.. it all works fine they also put Gyms now to show ^^.. is there a way maybe to turn that off again? so that only pokemon are showing?
how you get it to work? i just get this all the time