const mapOptions = {
  center: center,
  zoom: 14, // 초기 줌 레벨
  minZoom: 13, // 최소 줌 레벨
  maxZoom: 16, // 최대 줌 레벨 추가 
  maxBounds: bounds,
  zoomControl: true, // 줌 컨트롤 추가
  zoomControlOptions: { // 줌 컨트롤 위치 설정
    position: naver.maps.Position.TOP_RIGHT
  },
  gl: true,
  customStyleId: '....',
};
// 지도 인스턴스 생성 (전역 변수에 할당)
map = new naver.maps.Map('map', mapOptions);