CLLocationCoordinate2D

CLLocationCoordinate2D(经纬度)

  • CLLocationCoordinate2D是一个用来表示经纬度的结构体,定义如下
typedef struct {
        CLLocationDegrees latitude; // 纬度
        CLLocationDegrees longitude; // 经度
} CLLocationCoordinate2D;
  • 一般用CLLocationCoordinate2DMake函数来创建CLLocationCoordinate2D

经纬度

  • 全球经纬度地图


    CLLocationCoordinate2D_第1张图片
    经纬度.png
  • 中国的经纬度范围
    • 纬度范围:N 3°51′ ~ N 53°33′
    • 经度范围:E 73°33′ ~ E 135°05′
    • 部分城市的经纬度


      CLLocationCoordinate2D_第2张图片
      中国经纬度.png

你可能感兴趣的:(CLLocationCoordinate2D)