728x90
https://developers.google.com/maps/documentation/javascript/distancematrix#transit_options
var origin1 = new google.maps.LatLng(55.930385, -3.118425);
var origin2 = 'Greenwich, England';
var destinationA = 'Stockholm, Sweden';
var destinationB = new google.maps.LatLng(50.087692, 14.421150);
var service = new google.maps.DistanceMatrixService();
service.getDistanceMatrix(
{
origins: [origin1, origin2],
destinations: [destinationA, destinationB],
travelMode: 'DRIVING',
transitOptions: TransitOptions,
drivingOptions: DrivingOptions,
unitSystem: UnitSystem,
avoidHighways: Boolean,
avoidTolls: Boolean,
}, callback);
function callback(response, status) {
// See Parsing the Results for
// the basics of a callback function.
}
한국은 DRIVING 지원하지 않고 교통수단인 TRANSIT 을 지원합니다.
var origin1 = new google.maps.LatLng(55.930385, -3.118425);
var destinationA = new google.maps.LatLng(55.930385, -3.118425);
var service = new google.maps.DistanceMatrixService();
service.getDistanceMatrix(
{
origins: [origin1],
destinations: [destinationA],
travelMode: 'TRANSIT',
transitOptions: TransitOptions,
drivingOptions: DrivingOptions,
unitSystem: UnitSystem,
avoidHighways: Boolean,
avoidTolls: Boolean,
}, callback);
function callback(response, status) {
// See Parsing the Results for
// the basics of a callback function.
}
728x90
반응형
'개발' 카테고리의 다른 글
FREENOM 무료 도메인 만들기, IP 셋팅 방법 (0) | 2020.07.01 |
---|---|
localhost를 도메인 주소로 변경하는 방법 (hosts 파일 변경) (2) | 2020.06.30 |
[리눅스] 디스크 용량 확인 명령어 (df/du) (0) | 2020.06.15 |
[MYSQL] 프로세스 리스트 보기 / 죽이기(KILL) (0) | 2020.06.15 |
[SweetAlert] 예쁜 alert 창 / 사용방법 + 다운로드 주소 ( + 버튼 색상/순서 변경) (0) | 2020.06.05 |