Convert longitude/latitude to x/y on iPhone

末鹿安然 提交于 2019-11-30 09:50:56

To make this work you need to know 4 pieces of data:

  1. Latitude and longitude of the top left corner of the image.
  2. Latitude and longitude of the bottom right corner of the image.
  3. Width and height of the image (in points).
  4. Latitude and longitude of the data point.

With that info you can do the following:

// These should roughly box Germany - use the actual values appropriate to your image
double minLat = 54.8;
double minLong = 5.5;
double maxLat = 47.2;
double maxLong = 15.1;

// Map image size (in points)
CGSize mapSize = mapView.frame.size;

// Determine the map scale (points per degree)
double xScale = mapSize.width / (maxLong - minLong);
double yScale = mapSize.height / (maxLat - minLat);

// Latitude and longitude of city
double spotLat = 49.993615;
double spotLong = 8.242493;

// position of map image for point
CGFloat x = (spotLong - minLong) * xScale;
CGFloat y = (spotLat - minLat) * yScale;

If x or y are negative or greater than the image's size, then the point is off of the map.

This simple solution assumes the map image uses the basic cylindrical projection (Mercator) where all lines of latitude and longitude are straight lines.

Edit:

To convert an image point back to a coordinate, just reverse the calculation:

double pointLong = pointX / xScale + minLong;
double pointLat = pointY / yScale + minLat;

where pointX and pointY represent a point on the image in screen points. (0, 0) is the top left corner of the image.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!