1

屋内ナビゲーション用にIndoorAtlas SDKを使用して小さな例を1つ作成しようとしています。私はApple Mapsの代わりにGoogle Mapsを使用しています。 IndoorAtlasバックエンドからフロアプランイメージを取得したら、境界を作成するためにSouthWestおよびNorthEast座標を必要とするGMSCoordinateBoundsを作成する必要があります。私はこれらの座標を正しく決定する方法を知る必要があります。Indoor Atlasフロアプラン画像のSouthWestとNorthEastを確認する

CLLocationCoordinate2D southWest = CLLocationCoordinate2DMake(self.floorPlan.topRight.latitude,self.floorPlan.topRight.longitude); 
CLLocationCoordinate2D northEast = CLLocationCoordinate2DMake(self.floorPlan.bottomLeft.latitude,self.floorPlan.bottomLeft.longitude); 


GMSCoordinateBounds *overlayBounds = [[GMSCoordinateBounds alloc] initWithCoordinate:southWest coordinate:northEast]; 


UIImage *icon = fpImage; 
GMSGroundOverlay *overlay = 
[GMSGroundOverlay groundOverlayWithBounds:overlayBounds icon:icon]; 
overlay.bearing = self.floorPlan.bearing; 
overlay.map = _mapView; 

GMSCameraUpdate *updatedCamera = [GMSCameraUpdate setTarget:self.floorPlan.center zoom:10]; 
[self.mapView animateWithCameraUpdate:updatedCamera]; 
self.marker.position = self.camera.target; 
_mapView = [GMSMapView mapWithFrame:CGRectZero camera:self.camera]; 

がどのように言及した座標を決定します: は現在、私のコードは次のようになります。上記の座標を試してみると正しい矩形が得られません。

これを確認する他の方法はありますか?

+0

緯度?私は同じ問題に直面しています –

答えて

1

私は座標

を計算する方法を発見 - (NSArrayの*)calculateLongLatDegreesInMeters:(CLLocationDegrees)は、あなたが解決策を見つけた {

float lat = M_PI * latitude/180; 

// Constants for calculating lengths 

float m1 = 111132.92; 

float m2 = -559.82; 

float m3 = 1.175; 

float m4 = -0.0023; 

float p1 = 111412.84; 

float p2 = -93.5; 

float p3 = 0.118; 

float eq1 = m1 + (m2 * cos(2 * lat)) + (m3 * cos(4 * lat)); 

float latitudeDegreeInMeters = eq1 + (m4 * cos(6 * lat)); 

float longitudeDegreeInMeters = (p1 * cos(lat)) + (p2 * cos(3 * lat)) + (p3 * cos(5 * lat)); 

NSString *latDegInMtr = [NSString stringWithFormat:@"%f",latitudeDegreeInMeters]; 
NSString *lonDegInMtr = [NSString stringWithFormat:@"%f",longitudeDegreeInMeters]; 


NSArray *arr = [NSArray arrayWithObjects:latDegInMtr,lonDegInMtr, nil]; 



return arr; //(latitudeDegreeInMeters, longitudeDegreeInMeters) 

}

+0

コードを投稿するための@Devashisありがとうございます。 –

関連する問題