在 mkmapview 谷歌地图、iPhone 中显示缩放位置

发布于 2024-11-04 15:17:52 字数 96 浏览 0 评论 0原文

现在我正在研究谷歌地图。为了在谷歌地图上显示图钉,我使用区域名称并使用地理编码器。所以现在我想要缩放谷歌地图。现在我如何使用地理编码器设置跨度。请建议。

麦克风。

Right now i am working on Google map. and for show pins on Google map i am using the area name and using Geo coder. so now i want to so zoomed Google map. so now how i set span using geo coder. please suggest.

Mike.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

游魂 2024-11-11 15:17:52

迈克,不太清楚你在问什么......但我认为你在问如何将地图缩放到某个位置。如果是这样的话..这里有一些代码可以通过放大到好的美国来演示。

-(void) showUS 
{

    MKMapView *mapView = (MKMapView *)self.view;


    MKCoordinateRegion region;
    MKCoordinateSpan span;
    span.longitudeDelta= 56.250000;

    CLLocationCoordinate2D center;

    center.latitude=38.959409;
    center.longitude=-97.734375;

    region.span=span;
    region.center=center;

    @try {
        [mapView setRegion:region animated:YES];
    }
    @catch (NSException * e) {

    }

}

Mike, not exactly sure what you are asking... but I think you are asking how to zoom the map into a certain location. if that is the case.. here is some code to demo that by zooming into the good ol USA.

-(void) showUS 
{

    MKMapView *mapView = (MKMapView *)self.view;


    MKCoordinateRegion region;
    MKCoordinateSpan span;
    span.longitudeDelta= 56.250000;

    CLLocationCoordinate2D center;

    center.latitude=38.959409;
    center.longitude=-97.734375;

    region.span=span;
    region.center=center;

    @try {
        [mapView setRegion:region animated:YES];
    }
    @catch (NSException * e) {

    }

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文