An open API service indexing awesome lists of open source software.

https://github.com/ermos/gmp

Communicate with Google Map Platform
https://github.com/ermos/gmp

Last synced: 11 days ago
JSON representation

Communicate with Google Map Platform

Awesome Lists containing this project

README

          

# Google Maps Platform

## Find Place
```go
client := gapi.New("API_KEY")

p, err := client.FindPlaceByString(context.Background(), "Champ de Mars, 5 Av. Anatole France, 75007 Paris", gapi.FindPlaceDefaultFields)
if err != nil {
log.Fatal(err.Error())
}
```