KBoard 오션 프랜차이즈 스킨에서 goole maps mark를 다른 이미지로 교체 하고 싶어요 어떻게하면 되나요?
안녕하세요~^^
FTP로 접속해서 /wp-content/plugins/kboard/skin/ocean-franchise/document.js 파일에
아래의 코드를 찾아서
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: name
});
아래의 코드를 적절히 수정 후 적용해보세요.
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: name,
icon: '이미지 주소'
});
추후 별도의 코드 수정 없이 간단하게 google maps marker 이미지 수정이 가능하도록 업데이트하겠습니다.
고맙습니다.