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
- Host: GitHub
- URL: https://github.com/ermos/gmp
- Owner: ermos
- Created: 2021-11-08T08:34:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-08T23:00:13.000Z (over 3 years ago)
- Last Synced: 2025-02-24T07:16:06.291Z (over 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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())
}
```