Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('wp_ajax_fiapi_geocode', function(){
- $coords = array();
- $response = wp_remote_get("https://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($_GET['address'])."&key=" . FIAPI_GOOGLE_API_KEY);
- if (!is_wp_error($response)){
- $result = json_decode($response['body'], true);
- $coords = $result['results'][0]['geometry']['location'];
- }
- wp_send_json($coords);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement