16

Google マップを作成して、特定の場所を中心にするのは非常に簡単です (以下を参照)。グーグルマップを作成し、その上にマーカーを表示するのも同様markers=color:blue%7Clabel:S%7C11211%7C11206%7C11222です。

以下のような単純な中心マップを作成するだけで、中心に単一のマーカーを追加するにはどうすればよいですか? ありがとう

<img alt="Map" src="http://maps.google.com/maps/api/staticmap?center=+AUBURN+WA+98001&amp;zoom=14&amp;size=400x400&amp;sensor=false">
4

4 に答える 4

1

ここで私は段階的にコードを与えています

NSString *strLat = [NSString stringWithFormat:@"%f",_message.latitude];
NSString *strLong = [NSString stringWithFormat:@"%f",_message.longitude];
NSString *strURL = [NSString stringWithFormat:@"%@center=%@,%@&zoom=15&size=200x200&markers=color:red%%7Clabel:C%%7C%@,%@&key=%@",https://maps.googleapis.com/maps/api/staticmap?,strLat,strLong,strLat,strLong,GOOGLE_API_BROWSER_KEY];
NSLog(@"strURL %@",strURL);
strURL = [strURL stringByReplacingOccurrencesOfString:@"%%" withString:@"%"];

これで画像の URL ができました

于 2015-12-16T05:32:00.007 に答える