Home › Forums › MapPress Support › Using map as input device for other field? › Reply To: Using map as input device for other field?
December 24, 2012 at 11:47 am
#11222
Keymaster
Hi, the plugin doesn’t support anything like that. You could hook into the save action and extract the data from the map as it is being saved. The plugin call this action when a map is saved, with the mapid that was saved.
do_action('mappress_map_save', $mapid);
You can use this to retrieve the map:
Mappress_Map::get($mapid)