

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 정적 맵에 대해 반경과 확대/축소 중에서 결정하는 방법
<a name="choose-radius-vs-zoom"></a>

이 주제에서는 Amazon Location Service를 사용하여 정적 맵을 생성할 때 `radius` 또는 `zoom` 중에서 선택하는 방법을 알아봅니다. `radius` 파라미터는 적용 범위를 보다 정밀하게 제어하므로 정확한 적용 범위를 알고 있는 고객 대면 애플리케이션에 적합합니다. `zoom` 파라미터는 표시되는 세부 수준을 조정하려는 경우 지리 공간 분석에 더 적합합니다.

## 반경 사용
<a name="with-radius"></a>

이 예제에서는 중앙 위치에서 `radius` 파라미터를 사용하여 Sri Lanka의 맵 이미지를 생성합니다.

------
#### [ Request URL ]

```
https://maps.geo.eu-central-1.amazonaws.com/v2/static/map?style=Satellite&width=700&height=700&center=80.60596,7.76671&radius=235000&scale-unit=KilometersMiles&key=API_KEY
```

------
#### [ Response image ]

![\[Satellite view of Sri Lanka, showing the teardrop-shaped island nation surrounded by ocean.\]](http://docs.aws.amazon.com/ko_kr/location/latest/developerguide/images/static-radius.png)


------

## 확대/축소 사용
<a name="with-zoom"></a>

이 예제에서는 중앙 위치에서 `zoom` 파라미터를 사용하여 Sri Lanka의 맵 이미지를 생성합니다.

------
#### [ Request URL ]

```
https://maps.geo.eu-central-1.amazonaws.com/v2/static/map?style=Satellite&width=700&height=700&zoom=8&center=80.60596,7.76671&scale-unit=KilometersMiles&key=API_KEY
```

------
#### [ Response image ]

![\[Satellite view of Sri Lanka, showing the teardrop-shaped island nation surrounded by ocean.\]](http://docs.aws.amazon.com/ko_kr/location/latest/developerguide/images/static-zoom.png)


------