- DefGridWith = 2000

This commit is contained in:
gazebo
2019-06-25 16:35:41 +08:00
parent 0d7d3161b9
commit 866f8834db
3 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ import (
const (
DefRadius = 8000
DefGridWith = 3000
DefGridWith = 2000
)
func GetCityShops(ctx *jxcontext.Context, parentTask tasksch.ITask, vendorIDs []int, cityCode, radius, gridWith int) (pageStoreList []*model.PageShop, err error) {

View File

@@ -34,8 +34,8 @@ func (c *PurchaseHandler) GetStorePageInfo(ctx *jxcontext.Context, cityInfo, sto
VendorStatus: utils.Int2Str(shopInfo.BusinessStatus),
Address: shopInfo.Address,
Lng: shopInfo.Longitude,
Lat: shopInfo.Latitude,
Lng: shopInfo.Longitude / 100000,
Lat: shopInfo.Latitude / 100000,
DistrictCode: districtCode,
Tel1: shopInfo.Phone,