Before I go too far and realize there was an easier way to do this, I have a simple question:
Situation: In an Android app, I have 200 hand-picked restaurants and I want to display the 20 closest to a user based on his location. There are multiple users and restaurants should be added dynamically. For this, I need a list of those restaurants. Logically, I should only return the 20 closest ones, in case it grows to 20000 one day. It only makes sense.
Question: Does google provide an API for me to store data that can be accessed from all users based on their own query string? Or do I have to store it in an external server and get the infos with JSON?
Just don't want to miss an available service that makes all of this easier.