2013-06-25 59 views
2

我已经将Google Map嵌入到iPhone上的Map中的View Controller中。我可以创建我的地图使用:如何使用iOS API将KML文件URL加载到Google地图?

GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:39.93 
                 longitude:-75.17 
                  zoom:12]; 
mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera]; 

// use GPS to determine location of self 
mapView_.myLocationEnabled = YES; 
mapView_.settings.myLocationButton = YES; 
mapView_.settings.compassButton = YES; 

现在,我想添加一个显示路线的kml文件(从URL)。我会想象GMSMapView中有一些东西可以作为图层或其他东西,但我没有任何运气。我见过KMS教程,但是使用了其他一些工具包,MK。无论如何,有没有一种方法可以使用Google Maps for iOS API加载KML文件?

回答

3

我知道这个问题已经超过1年了,但我找不到任何解决方案,所以我希望我的解决方案将会有用。

您可以使用iOS-KML-Framework将KML加载到GMSMapView中。我是移植使用KML-Viewer

Add方法根据给定的URL解析KML从项目的代码,请确保您传递正确的应用程式束dispatch_queue_create():

- (void)loadKMLAtURL:(NSURL *)url 
{ 
    dispatch_queue_t loadKmlQueue = dispatch_queue_create("com.example.app.kmlqueue", NULL); 

    dispatch_async(loadKmlQueue, ^{ 
     KMLRoot *newKml = [KMLParser parseKMLAtURL:url]; 

     [self performSelectorOnMainThread:@selector(kmlLoaded:) withObject:newKml waitUntilDone:YES]; 
    }); 
} 

处理的KML解析导致或错误:

- (void)kmlLoaded:(id)sender { 
    self.navigationController.view.userInteractionEnabled = NO; 

    __kml = sender; 

    // remove KML format error observer 
    [[NSNotificationCenter defaultCenter] removeObserver:self name:kKMLInvalidKMLFormatNotification object:nil]; 

    if (__kml) { 
     __geometries = __kml.geometries; 

     dispatch_async(dispatch_get_main_queue(), ^{ 
      self.navigationController.view.userInteractionEnabled = YES; 

      [self reloadMapView]; 
     }); 
    } else { 
     dispatch_async(dispatch_get_main_queue(), ^{ 
      self.navigationController.view.userInteractionEnabled = YES; 

      UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Error", nil) 
                   message:NSLocalizedString(@"Failed to read the KML file", nil) 
                   delegate:nil 
                 cancelButtonTitle:NSLocalizedString(@"OK", nil) 
                 otherButtonTitles:nil]; 
      [alertView show]; 
     }); 
    } 
} 

走了过来,从KML几何形状的物品,并将它们添加到GMSMapView中作为标记:

- (void)reloadMapView 
{ 
    NSMutableArray *annotations = [NSMutableArray array]; 

    for (KMLAbstractGeometry *geometry in __geometries) { 
     MKShape *mkShape = [geometry mapkitShape]; 
     if (mkShape) { 
      if ([mkShape isKindOfClass:[MKPointAnnotation class]]) { 
       MKPointAnnotation *annotation = (MKPointAnnotation*)mkShape; 

       GMSMarker *marker = [[GMSMarker alloc] init]; 
       marker.position = annotation.coordinate; 
       marker.appearAnimation = kGMSMarkerAnimationPop; 
       marker.icon = [UIImage imageNamed:@"marker"]; 
       marker.title = annotation.title; 
       marker.userData = [NSString stringWithFormat:@"%@", geometry.placemark.descriptionValue]; 
       marker.map = self.mapView; 

       [annotations addObject:annotation]; 
      } 
     } 
    } 

    // set bounds in next run loop. 
    dispatch_async(dispatch_get_main_queue(), ^{ 

     GMSCoordinateBounds *bounds = [[GMSCoordinateBounds alloc] init]; 

     for (id <MKAnnotation> annotation in annotations) 
     { 
      bounds = [bounds includingCoordinate:annotation.coordinate]; 
     } 

     GMSCameraUpdate *update = [GMSCameraUpdate fitBounds:bounds]; 
     [self.mapView moveCamera:update]; 
     [self.mapView animateToViewingAngle:50]; 
    }); 

} 

在最后一个方法结束时,我们使用updating the camera view来适应添加到地图上的所有标记。如果不需要,可以移除这部分。

+0

你似乎做了很多更多的传递到主线程比严格要求... – Wain

+0

@Wain,你可能是对的。原来的代码不是我的,所以我没有机会审查它的效率。刚刚将它移植到Google Maps SDK昨天。 – f0xik

0

这就是我如何使用提到的iOS-KML-Framework解决类似的问题。

#import <GoogleMaps/GoogleMaps.h> 
#import "KML.h" 

@property (weak, nonatomic) IBOutlet GMSMapView *mapView; 

- (void)loadZonesFromURL:(NSURL *)url { 

KMLRoot* kml = [KMLParser parseKMLAtURL: url]; 

for (KMLPlacemark *placemark in kml.placemarks) { 
    GMSMutablePath *rect = [GMSMutablePath path]; 

    if ([placemark.geometry isKindOfClass:[KMLPolygon class]]) { 
     KMLLinearRing *ring = [(KMLPolygon *)placemark.geometry outerBoundaryIs]; 

     for (KMLCoordinate *coordinate in ring.coordinates) { 
      [rect addCoordinate:CLLocationCoordinate2DMake(coordinate.latitude, coordinate.longitude)]; 
     } 

     GMSPolygon *polygon = [GMSPolygon polygonWithPath:rect]; 
     polygon.fillColor = [UIColor colorWithRed:67.0/255.0 green:172.0/255.0 blue:52.0/255.0 alpha:0.3]; 
     polygon.map = self.mapView; 

    } 

} 


} 
相关问题