var maps = maps || {};
maps.LatLng = function () {
var longitude;
var latitude;
var LatLng = function (long, lat) {
longitude = long;
latitude = lat;
};
var SetLongitude = function(longitude) {
this.longitude = longitude
};
var SetLatitude = function(latitude) {
this.latitude = latitude
};
return {
LatLng: LatLng,
SetLongitude: SetLongitude,
SetLatitude: SetLatitude
};
};
//LatLng.js
//위에 것이 데이터 클래스라면
var Circle = Circle || {};
Circle.Circle = function (option) {
"use strict";
var center; //LatLng
};
Circle.js
클래스처럼... Circle의 center의 변수 타입을 LatLng 이것으로 정하고 사용하고 싶은데.. Circle.js.에 LatLng.js 파일을 Include 하는 방법이 있을까요?
모듈 패턴으로 검색하고 있는데 모듈화 방법만 나오고 Include 방법은 안나오니.. 이건 아닌 것 같네요..
그렇다고 한 페이지에 스크립트를 다 때려박아넣으니 제가 함수 찾기도 힘들고 되게 불편하네요...