Skip to content

Commit

Permalink
Adjust geolocation to volleyball field in hamburg city park
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonScholz committed Oct 14, 2023
1 parent 669fe4a commit 8a4f897
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Please see https://github.com/SimonScholz/qr-code-with-logo/blob/main/kotlin-sam
```java
String url = SimpleTypes.url("https://simonscholz.github.io/");

String geolocation = SimpleTypes.geolocation(52.520008, 13.404954);
String geolocation = SimpleTypes.geolocation(53.59659752940634, 10.006589989354053);

String email = SimpleTypes.email("simon@example.com", "Hello World", "This is a test email");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private static void createWithUrl(final QrCodeApi qrCodeApi, final String qrCode
}

private static void createWithGeolocation(final QrCodeApi qrCodeApi, final String qrCodeDir) throws IOException {
final String geolocation = SimpleTypes.geolocation(52.520008, 13.404954);
final String geolocation = SimpleTypes.geolocation(53.59659752940634, 10.006589989354053);
createDefaultQrCode(qrCodeApi, geolocation, new File(qrCodeDir, "simple-geolocation.png"));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private fun createWithUrl(qrCodeApi: QrCodeApi, qrCodeDir: String) {
}

private fun createWithGeolocation(qrCodeApi: QrCodeApi, qrCodeDir: String) {
val geolocation = geolocation(52.520008, 13.404954)
val geolocation = geolocation(53.59659752940634, 10.006589989354053)
createDefaultQrCode(qrCodeApi, geolocation, File(qrCodeDir, "simple-geolocation.png"))
}

Expand Down

0 comments on commit 8a4f897

Please sign in to comment.