gpt4 book ai didi

iOS : zoom in and zoom out effect on map

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:10 26 4
gpt4 key购买 nike

我已经创建了 map ,如 this link 所示并且运行良好。

但问题是,它只能以一种方式放大(只会变大)。我怎样才能让它以任何一种方式工作?

可能就像我们在 google map 上(加号 - 减号棒在左侧)。

最佳答案

用于放大

-(void)zoomIn
{
region.span.latitudeDelta = region.span.latitudeDelta/4 ;
region.span.longitudeDelta = region.span.longitudeDelta/4;



region.center.latitude = mapView.centerCoordinate.latitude ;
region.center.longitude = mapView.centerCoordinate.longitude ;
[mapView setRegion:region animated:YES];
}

对于缩小

-(void)zoomOut
{
region.span.latitudeDelta = region.span.latitudeDelta*4 ;
region.span.longitudeDelta = region.span.longitudeDelta*4;



region.center.latitude = mapView.centerCoordinate.latitude ;
region.center.longitude = mapView.centerCoordinate.longitude ;
[mapView setRegion:region animated:YES];
}

You use the delta values in this structure to indicate the desired zoom level of the map, with smaller delta values corresponding to a higher zoom level.

请引用这个link了解更多。

关于iOS : zoom in and zoom out effect on map,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13381040/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com