Как я могу открыть Google Maps для направления, используя координаты на iphone - PullRequest
21 голосов
/ 10 октября 2009

Я использую UIMapView для отображения местоположений на iPhone. Я хочу указать направление от текущего местоположения до интересующего места, я не думаю, что это возможно с помощью MapKit (но, если это необходимо, сообщите), поэтому я открою либо приложение Google Maps, либо сафари для его отображения.

Могу ли я сделать это, указав координаты от (текущего местоположения) до координат (местоположения интереса) У меня есть эти долготы и широты. Или я должен использовать адреса улиц?

Если мне нужно использовать адреса улиц, могу ли я узнать их по широте и долготе.

Ответы [ 7 ]

74 голосов
/ 12 октября 2009

Да, использование MapKit невозможно. Вы можете попытаться сформировать запрос URL-адреса карт Google, содержащий ваше текущее местоположение и пункт назначения, который откроется в приложении карт Google с указаниями.

Вот пример URL:

http://maps.google.com/?saddr=34.052222,-118.243611&daddr=37.322778,-122.031944

Вот как вы могли бы реализовать это в своем коде:

CLLocationCoordinate2D start = { 34.052222, -118.243611 };
CLLocationCoordinate2D destination = { 37.322778, -122.031944 };    

NSString *googleMapsURLString = [NSString stringWithFormat:@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f",
                                 start.latitude, start.longitude, destination.latitude, destination.longitude];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];
9 голосов
/ 04 января 2017

Используйте приведенный ниже код для карт Google и Apple в Swift 3 -

if UIApplication.shared.canOpenURL(URL(string: "comgooglemaps://")!)
        {
            let urlString = "http://maps.google.com/?daddr=\(destinationLocation.latitude),\(destinationLocation.longitude)&directionsmode=driving"

            // use bellow line for specific source location

            //let urlString = "http://maps.google.com/?saddr=\(sourceLocation.latitude),\(sourceLocation.longitude)&daddr=\(destinationLocation.latitude),\(destinationLocation.longitude)&directionsmode=driving"

            UIApplication.shared.openURL(URL(string: urlString)!)
        }
        else
        {
            //let urlString = "http://maps.apple.com/maps?saddr=\(sourceLocation.latitude),\(sourceLocation.longitude)&daddr=\(destinationLocation.latitude),\(destinationLocation.longitude)&dirflg=d"
            let urlString = "http://maps.apple.com/maps?daddr=\(destinationLocation.latitude),\(destinationLocation.longitude)&dirflg=d"

            UIApplication.shared.openURL(URL(string: urlString)!)
        }
2 голосов
/ 29 июня 2011

Это возможно. Использование MKMapView Получить координату местоположения, где вы нажали на телефоне, и с помощью двух координат запросить файл KML из веб-службы Google, проанализировать Файл KML (пример приложения KML для просмотра на сайте разработчика) и отображение маршрутов ....
Спасибо

1 голос
/ 15 июня 2017

Сначала проверьте, установлена ​​ли карта Google на устройстве или нет

if ([[UIApplication sharedApplication] canOpenURL:
         [NSURL URLWithString:@"comgooglemaps://"]]) {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"comgooglemaps://?saddr=23.0321,72.5252&daddr=22.9783,72.6002&zoom=14&views=traffic"]];
    } else {
        NSLog(@"Can't use comgooglemaps://");
    }

Добавить схему запроса в .plist

<key>LSApplicationQueriesSchemes</key>
<array>
 <string>comgooglemaps</string>
</array>
1 голос
/ 28 сентября 2012

Можно показать маршрут в MapKit: просто используйте MKPolyline

Я получаю строку полилинии от googleMapsApi. Я анализирую его на сервере с помощью php и возвращаю окончательную строку polilyne в мое приложение.

NSMutableArray *points = [myApp decodePolyline:[route objectForKey:@"polyline"]];

if([points count] == 0)
{
    return;
}

// while we create the route points, we will also be calculating the bounding box of our route
// so we can easily zoom in on it. 
MKMapPoint northEastPoint; 
MKMapPoint southWestPoint; 

// create a c array of points. 
MKMapPoint* pointArr = malloc(sizeof(CLLocationCoordinate2D) * [points count]);

for(int idx = 0; idx < points.count; idx++)
{
    // break the string down even further to latitude and longitude fields. 
    NSString* currentPointString = [points objectAtIndex:idx];
    NSArray* latLonArr = [currentPointString componentsSeparatedByCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@","]];

    CLLocationDegrees latitude  = [[latLonArr objectAtIndex:0] doubleValue];
    CLLocationDegrees longitude = [[latLonArr objectAtIndex:1] doubleValue];

    // create our coordinate and add it to the correct spot in the array 
    CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(latitude, longitude);

    MKMapPoint point = MKMapPointForCoordinate(coordinate);

    if (idx == 0) {
        northEastPoint = point;
        southWestPoint = point;
    }
    else 
    {
        if (point.x > northEastPoint.x) 
            northEastPoint.x = point.x;
        if(point.y > northEastPoint.y)
            northEastPoint.y = point.y;
        if (point.x < southWestPoint.x) 
            southWestPoint.x = point.x;
        if (point.y < southWestPoint.y) 
            southWestPoint.y = point.y;
    }
    pointArr[idx] = point;
    _currentLenght++;
}

// create the polyline based on the array of points. 
self.routeLine = [MKPolyline polylineWithPoints:pointArr count:points.count];

_routeRect = MKMapRectMake(southWestPoint.x, southWestPoint.y, 
                           northEastPoint.x - southWestPoint.x, 
                           northEastPoint.y - southWestPoint.y);

// clear the memory allocated earlier for the points
free(pointArr);

if (nil != self.routeLine) {
        [self.mapView addOverlay:self.routeLine];
}
[self.mapView setVisibleMapRect:_routeRect];

И показывает:

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay
{
MKOverlayView* overlayView = nil;

if(overlay == self.routeLine)
{
    self.routeLineView = [[[MKPolylineView alloc] initWithPolyline:self.routeLine] autorelease];
    self.routeLineView.fillColor = [UIColor blueColor];
    self.routeLineView.strokeColor = TICNavigatorColor;
    self.routeLineView.lineWidth = 7;
    self.routeLineView.lineJoin = kCGLineJoinRound;
    self.routeLineView.lineCap = kCGLineCapRound;

    overlayView = self.routeLineView;
}

return overlayView; 
}

Попробуйте.

1 голос
/ 07 мая 2010

Надежное решение - создать контроллер представления с NIB, который включает в себя UIWebView, а затем передать URL-адрес, который использует службы карт / направления Google. Таким образом, вы сохраняете пользователя в приложении. Этого подхода недостаточно при открытии веб-страницы, потому что комплект Apple не поддерживает масштабирование. Но в OS4, по крайней мере, пользователь может дважды щелкнуть кнопку «Домой» и вернуться в приложение.

0 голосов
/ 18 августа 2011

Вы можете отправить отправленный пин-код себе по электронной почте, и когда вы откроете ссылку в письме, она покажет координаты.

...