var cors_proxy = 'https://cors-anywhere.herokuapp.com/';
$.getJSON(cors_proxy + url, function(data) {
});
var keyword = $('#keyword').val();
$.getJSON({
url: cors_proxy + 'http://api.opencube.tw/location/address',
data: {
keyword: keyword
}
}, function(data) {
if (data.status == 200) {
current.lat = data.data.lat;
current.lng = data.data.lng;
}
});