PokemonGoers / Catch-em-all

Now that we have tons of data about Pokemon (what they are, where they are, what’s their relationship, what they can transform into, which attacks they can perform, aso) we want to integrate it all into a comprehensive website. This website should contain sections about each Pokemon and its details. Additionally, the website should register the user’s location and tell the user how close is that the predicted pokemon to him/her. Additionally you will be incorporating the apps that were created by project B,C and D into the website. Your group will need to create automated builds and testing for this apps and use continuous integration to pull in new changes in the code repositories. Apps from projects B-D should be packaged and made available on NPM. Ideally when you completed these tasks the webapp component would integrate the apps by “requiring’ them. Here is a possible user story: when a user opens the website or the app the current location of the user will be shown. Additionally, the website/app will show automatically where the pokemons that are currently active are and where the pokemons that we predict to active in the nearest future (i.e. within half a day) will be located (all of this will be available from the app developed in project D). Hopefully, the website will be somewhat crowded by that data. Then, there needs to be a menu bar or something available (e.g. above the map or on the right side to it) that will list currently active or predicted pokemons. Clicking on one of them will make other pokemons on the map disappear, except of this clicked one. Separate web pages would allow the search and presentation of individual Pokemons and the information we gathered about them, including third party data (project A) and twitter analysis (project C)
9 stars 7 forks source link

Map filtering #101

Closed WoH closed 8 years ago

WoH commented 8 years ago

Since the filter is now well-synced throughout the app, we need to pass it to the pokemap. This requires transforming the Filter() to a filterObj{} according to the specification (https://github.com/PokemonGoers/Catch-em-all/issues/24).

  • filter({ pokemonIds, sightingsSince, predictionsUntil }) applies filter options to the map.
    • pokemonIds Array of Pokemon IDs which are shown (applies to predictions and sightings) on the map. If null show all 151 Pokemon.
    • sightingsSince Time in seconds for which sightings (includes mobs) in the past are shown. If 0 don't show any sightings.
    • predictionsUntil Time in seconds for which predictions are shown. If 0 don't show any predictions.

Predictions and Sightings should be passed as Date(). Ideally, the lookup / conversion should be done in a Service.

@PokemonGoers/catch-em-all

johartl commented 8 years ago

I'm working on this.

WoH commented 8 years ago

Are you sure? I was hoping someone else would want to get some lines down tbh and I thought this would be a perfect opportunity. But since we are running out of time I guess it's fine.

Edit: Maybe give anyone else a chance until tomorrow morning?