Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -19,7 +19,7 @@ | ... | @@ -19,7 +19,7 @@ |
19 | <script type="text/javascript" src="../../docs/js/examples-base.js"></script> | 19 | <script type="text/javascript" src="../../docs/js/examples-base.js"></script> |
20 | <script type="text/javascript" src="../../docs/js/highlight.min.js"></script> | 20 | <script type="text/javascript" src="../../docs/js/highlight.min.js"></script> |
21 | <script type="text/javascript" | 21 | <script type="text/javascript" |
22 | - src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=rr4owjosjy&submodules=geocoder"></script> | 22 | + src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=YOUR_CLIENT_ID&submodules=geocoder"></script> |
23 | <link rel="stylesheet" type="text/css" href="../../docs/css/examples-base.css" /> | 23 | <link rel="stylesheet" type="text/css" href="../../docs/css/examples-base.css" /> |
24 | 24 | ||
25 | <!-- | 25 | <!-- |
... | @@ -333,7 +333,7 @@ | ... | @@ -333,7 +333,7 @@ |
333 | function searchPubTransPathAJAX() { | 333 | function searchPubTransPathAJAX() { |
334 | var xhr = new XMLHttpRequest(); | 334 | var xhr = new XMLHttpRequest(); |
335 | //ODsay apiKey 입력 | 335 | //ODsay apiKey 입력 |
336 | - var url = "https://api.odsay.com/v1/api/searchPubTransPath?SX=" + sx + "&SY=" + sy + "&EX=" + ex + "&EY=" + ey + "&apiKey=nnsDQB1AWhpETO3HmMdDAw"; | 336 | + var url = "https://api.odsay.com/v1/api/searchPubTransPath?SX=" + sx + "&SY=" + sy + "&EX=" + ex + "&EY=" + ey + "&apiKey=Your_apiKey"; |
337 | xhr.open("GET", url, true); | 337 | xhr.open("GET", url, true); |
338 | xhr.send(); | 338 | xhr.send(); |
339 | xhr.onreadystatechange = function () { | 339 | xhr.onreadystatechange = function () { |
... | @@ -351,7 +351,7 @@ | ... | @@ -351,7 +351,7 @@ |
351 | function callMapObjApiAJAX(mabObj) { | 351 | function callMapObjApiAJAX(mabObj) { |
352 | var xhr = new XMLHttpRequest(); | 352 | var xhr = new XMLHttpRequest(); |
353 | //ODsay apiKey 입력 | 353 | //ODsay apiKey 입력 |
354 | - var url = "https://api.odsay.com/v1/api/loadLane?mapObject=0:0@" + mabObj + "&apiKey=nnsDQB1AWhpETO3HmMdDAw"; | 354 | + var url = "https://api.odsay.com/v1/api/loadLane?mapObject=0:0@" + mabObj + "&apiKey=Your_apiKey"; |
355 | xhr.open("GET", url, true); | 355 | xhr.open("GET", url, true); |
356 | xhr.send(); | 356 | xhr.send(); |
357 | xhr.onreadystatechange = function () { | 357 | xhr.onreadystatechange = function () { | ... | ... |
-
Please register or login to post a comment