1
0
Fork 0
mirror of https://github.com/imjasonh/staticmaps synced 2026-07-17 14:31:56 +00:00

Add DistanceMatrix API

This commit is contained in:
Jason Hall 2014-10-07 12:46:01 -04:00
parent c986c5df38
commit 2caece1694
3 changed files with 84 additions and 0 deletions

View file

@ -107,3 +107,7 @@ func encodeLatLngs(ll []LatLng) string {
func Float64(f float64) *float64 {
return &f
}
func String(s string) *string {
return &s
}