All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hn.map.qq.domain.Location Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.map.qq.domain;

/**
 *  坐标信息
 */
public class Location {
    /**
     * 纬度
     */
    private double lat;
    /**
     * 经度
     */
    private double lng;

    public Location(double lat, double lng) {
        this.lat = lat;
        this.lng = lng;
    }

    public double getLat() {
        return lat;
    }

    public void setLat(double lat) {
        this.lat = lat;
    }

    public double getLng() {
        return lng;
    }

    public void setLng(double lng) {
        this.lng = lng;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy