You are here

function location_map_link_my_mapquest in Location 7.3

MapQuest link.

File

supported/location.my.inc, line 112
Malaysia.

Code

function location_map_link_my_mapquest($location = array()) {
  if (location_has_coordinates($location)) {
    return 'http://www.mapquest.com/maps?l=' . urlencode($location['latitude']) . '&g=' . urlencode($location['longitude']);
  }
  return NULL;
}