1
0
Fork 0

more photos

This commit is contained in:
Matthias Kretschmann 2018-11-07 00:38:15 +01:00
parent 86ff85f3df
commit a7f654805f
Signed by: m
GPG Key ID: 606EEEF3C479A91F
7 changed files with 29 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

View File

@ -0,0 +1,9 @@
---
type: photo
date: 2018-01-15T00:00:00.000Z
title: Fusca e Pichação
image: 2018-01-15-fusca-e-pichacao.jpg
---
São Paulo, Brasil

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View File

@ -0,0 +1,9 @@
---
type: photo
date: 2018-01-17T00:00:00.000Z
title: Boa Viagem
image: 2018-01-17-boa-viagem.jpg
---
Boa Viagem, Recife, Brasil

Binary file not shown.

After

Width:  |  Height:  |  Size: 972 KiB

View File

@ -0,0 +1,9 @@
---
type: photo
date: 2018-07-02T00:00:00.000Z
title: Nine Inch Nails, Zitadelle
image: 2018-07-02-nine-inch-nails-zitadelle.jpg
---
Nine Inch Nails at Zitadelle Spandau, Berlin, Germany.

View File

@ -30,7 +30,7 @@ const providers = {
}
class ExifMap extends PureComponent {
state = { zoom: 8 }
state = { zoom: 12 }
static propTypes = {
gps: PropTypes.object
@ -38,7 +38,7 @@ class ExifMap extends PureComponent {
zoomIn = () => {
this.setState({
zoom: Math.min(this.state.zoom + 4, 16)
zoom: Math.min(this.state.zoom + 4, 20)
})
}