1
我不知道地圖視圖。我想爲特定地區的地圖做些什麼?如果可能的話,給我答案的例子和代碼。我如何獲得特定區域的地圖?
我不知道地圖視圖。我想爲特定地區的地圖做些什麼?如果可能的話,給我答案的例子和代碼。我如何獲得特定區域的地圖?
如果你在iPhone SDK 3.0詢問谷歌地圖,那麼你需要看看MKCoordinateRegion和MKCoordinateSpan在MapKit框架。
您可以通過使用latitudeDelta和MKCoordinateSpan的longitudeDelta屬性設置MKCoordinateRegion和縮放級別設置地圖視圖的座標。
例如,
CLLocationCoordinate2D location;
location.latitude=yourlatitude;
location.longitude=yourlongitude;
span.latitudeDelta=0.01; //or whatever zoom level
span.longitudeDelta=0.01;
region.span=span;
region.center=location;
[mapview setRegion:region animated:TRUE];
[mapview regionThatFits:region];
希望幫助...
你問的是谷歌地圖API? – Raptor 2009-10-30 07:14:00