If you are using the classic template you need to go to templates/normal_map_core.php and delete this line
<?php wpestate_pagination($prop_selection->max_num_pages, $range =2);
?>
Is around line 294
If you are using the half_map_core delete the same code as above- around line 167
Since the property list and advanced search results use the same templates to display the property list the pagination will not appear in both cases. If you want to show the pagination on the property list but now show on advanced search you could replace the code above with
<?php if( !is_page_template('advanced_search_results.php') ) {
wpestate_pagination($prop_selection->max_num_pages, $range =2);
}?>