in sample-app/backend/src/main/java/co/elastic/apm/android/sample/backend/WeatherController.java [25:36]
private Location cityToGeoLocation(String city) {
switch (city) {
case "Berlin":
return new Location(52.5167, 13.3833);
case "London":
return new Location(51.5072, -0.1275);
case "Paris":
return new Location(48.8566, 2.3522);
default:
throw new IllegalArgumentException("This service can only retrieve geo locations for European cities!");
}
}