Title: [Plugin: Pronamic Google Maps] Getting coordinates set in post
Last modified: August 20, 2016

---

# [Plugin: Pronamic Google Maps] Getting coordinates set in post

 *  Resolved [v_decadence](https://wordpress.org/support/users/v_decadence/)
 * (@v_decadence)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-getting-coordinates-set-in-post/)
 * I use Pronamic Google Maps plugin. How can I get coordinates of the certain post,
   which I set when filling post information?
 * Something like this:
    $lat = get_lat($post_id);

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Remco Tolsma](https://wordpress.org/support/users/remcotolsma/)
 * (@remcotolsma)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-getting-coordinates-set-in-post/#post-2982095)
 * The latitude and longitude data are stored in post meta fields:
 *     ```
       $post_id = get_the_ID();
   
       $latitude = get_post_meta( $post_id, '_pronamic_google_maps_latitude', true );
       $longitude = get_post_meta( $post_id, '_pronamic_google_maps_longitude', true );
       ```
   
 *  Thread Starter [v_decadence](https://wordpress.org/support/users/v_decadence/)
 * (@v_decadence)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-getting-coordinates-set-in-post/#post-2982121)
 * Thanks! This is exactly what I needed.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Pronamic Google Maps] Getting coordinates set in post’ is closed
to new replies.

 * 2 replies
 * 2 participants
 * Last reply from: [v_decadence](https://wordpress.org/support/users/v_decadence/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-getting-coordinates-set-in-post/#post-2982121)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
