package com.jqmobile.core.android.lbs; public interface ILocation { /** * 获取位置(默认优先使用cell定位) * @return */ public LocationEntity getLocation(); /** * 优先采用指定定位方式定位 * @param firstType * @return */ public LocationEntity getLocation(LocationTypeEnum firstType); }