Newer
Older
dxcgt / app / src / main / java / com / smartdot / cgt / util / LocationInfo.java
wangxitong on 6 Apr 2021 245 bytes first commit
package com.smartdot.cgt.util;

public class LocationInfo {
    /** 经纬度信息结构体 */
    public static class SItude {
        /** 纬度 */
        public double latitude;
        /** 经度 */
        public double longitude;
    }
}