IOS Map Move Center point get

Source: Internet
Author: User

Mkmap when the map is displayed, if the user moves the map, the data they define needs to be refreshed, so the latitude and longitude of the center point is more important.

This article shows how to get latitude and longitude

There's a way in mkmapviewdelegate.

-(void) Mapview: (Mkmapview *) Mapview regiondidchangeanimated: (BOOL) animated

This method is executed after the map has been moved, so we can get the latitude and longitude of the center point of the move.

-(void) Mapview: (Mkmapview *) Mapview regiondidchangeanimated: (BOOL) Animated {

Mkcoordinateregion region;
Cllocationcoordinate2d centercoordinate = MapView.region.center;
Region.center= centercoordinate;

NSLog (@ "regiondidchangeanimated%f,%f", Centercoordinate.latitude, Centercoordinate.longitude);
}

There is also a problem, how to get the user click on the map latitude and longitude of an area?

Methods are as follows

Add Tabguesture in Viewdidload


UITapGestureRecognizer *mtap = [[UITapGestureRecognizer alloc] initwithtarget:self action: @selector (tappress:)];
[Self.mapview Addgesturerecognizer:mtap];

[Mtap release];

-(void) Tappress: (uigesturerecognizer*) Gesturerecognizer
{

Cgpoint touchPoint = [Gesturerecognizer LocationInView:self.mapView];
Cllocationcoordinate2d touchmapcoordinate =
[Self.mapview Convertpoint:touchpoint ToCoordinateFromView:self.mapView];

NSLog (@ "%f%f", Touchmapcoordinate.latitude, Touchmapcoordinate.longitude);
}

IOS Map Move Center point get

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.