2013-08-30 137 views
1

什麼是等同的代碼,iOS的顯示標記在谷歌地圖信息窗口中的iOS顯示信息窗口標記

Marker marker = myMap.addMarker(new MarkerOptions() 
       .position(latLng) 
       .title("Title") 
       .snippet("Snippet") 
       .icon(BitmapDescriptorFactory 
       .fromResource(R.drawable.marker))); 

marker.showInfoWindow(); 

像這樣的機器人。

+0

您是否找到了解決方案? – Sam

回答

0
GMSMarker *marker = [[GMSMarker alloc] init]; 
marker.position = CLLocationCoordinate2DMake(17.4375194, 78.3808417); 
marker.title = @"collabor"; 
mapView_.delegate = self; 

marker.icon = [GMSMarker markerImageWithColor:[UIColor blackColor]]; 
marker.map= mapView_; 
[email protected]"snippet"; 

infowindow將自動顯示。 請參閱google的文檔以獲取更多信息