package com.jqyd.android.module.lbs.Interface; import com.jqyd.android.module.lbs.bean.LocationInfo; /** * 定位信息监听 * @author 荆林枭 * */ public interface ILocationListener { /** * @param locType 0-定位失败,1-百度,2-gps * @param bean */ public void onReceiveLocInfo(int locType,LocationInfo bean); }