Skip to content

Instantly share code, notes, and snippets.

@rpandey1234
Created December 16, 2019 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rpandey1234/19d9be3f6436080763e2eaf4adbf0b16 to your computer and use it in GitHub Desktop.
Save rpandey1234/19d9be3f6436080763e2eaf4adbf0b16 to your computer and use it in GitHub Desktop.
Sample data for the Android Google Maps project
private fun generateSampleData(): List<UserMap> {
return listOf(
UserMap(
"Memories from University",
listOf(
Place("Branner Hall", "Best dorm at Stanford", 37.426, -122.163),
Place("Gates CS building", "Many long nights in this basement", 37.430, -122.173),
Place("Pinkberry", "First date with my wife", 37.444, -122.170)
)
),
UserMap("January vacation planning!",
listOf(
Place("Tokyo", "Overnight layover", 35.67, 139.65),
Place("Ranchi", "Family visit + wedding!", 23.34, 85.31),
Place("Singapore", "Inspired by \"Crazy Rich Asians\"", 1.35, 103.82)
)),
UserMap("Singapore travel itinerary",
listOf(
Place("Gardens by the Bay", "Amazing urban nature park", 1.282, 103.864),
Place("Jurong Bird Park", "Family-friendly park with many varieties of birds", 1.319, 103.706),
Place("Sentosa", "Island resort with panoramic views", 1.249, 103.830),
Place("Botanic Gardens", "One of the world's greatest tropical gardens", 1.3138, 103.8159)
)
),
UserMap("My favorite places in the Midwest",
listOf(
Place("Chicago", "Urban center of the midwest, the \"Windy City\"", 41.878, -87.630),
Place("Rochester, Michigan", "The best of Detroit suburbia", 42.681, -83.134),
Place("Mackinaw City", "The entrance into the Upper Peninsula", 45.777, -84.727),
Place("Michigan State University", "Home to the Spartans", 42.701, -84.482),
Place("University of Michigan", "Home to the Wolverines", 42.278, -83.738)
)
),
UserMap("Restaurants to try",
listOf(
Place("Champ's Diner", "Retro diner in Brooklyn", 40.709, -73.941),
Place("Althea", "Chicago upscale dining with an amazing view", 41.895, -87.625),
Place("Shizen", "Elegant sushi in San Francisco", 37.768, -122.422),
Place("Citizen Eatery", "Bright cafe in Austin with a pink rabbit", 30.322, -97.739),
Place("Kati Thai", "Authentic Portland Thai food, served with love", 45.505, -122.635)
)
)
)
}
@jaberamassi
Copy link

tnx

@neilrehani101
Copy link

thanks

@mismail1970
Copy link

good Job

@SpencerDamon
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment