- delivery fee added.

- fixed scheduler bug
This commit is contained in:
gazebo
2018-07-19 18:05:40 +08:00
parent 56fcb4f4ed
commit a56cb64f8e
8 changed files with 111 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
package jxutils
import (
"fmt"
"testing"
)
func TestEarthDistance(t *testing.T) {
lat1, lng1 := 32.060255, 118.796877
lat2, lng2 := 39.904211, 116.407395
distance := EarthDistance(lat1, lng1, lat2, lng2)
fmt.Print(distance)
}