이동 초기 구현

This commit is contained in:
2019-06-16 21:41:31 +09:00
parent 1d4a2c5863
commit 378d2e043f
4 changed files with 49 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
$(function(){
var $target = $("#destNationID");
reloadWorldMap({
isDetailMap:false,
clickableAll:true,
neutralView:true,
useCachedMap:true,
selectCallback:function(city){
$target.val(city.nationId);
return false;
}
});
});