geo_query_handlers

geo/geo.inc, line 96

Versions
6
geo_query_handlers($geo_type)

Code

<?php
function geo_query_handlers($geo_type) {
  // TODO are these all supported by default?  (and through which functions?)
  return array(
    'wkt' => t('Well Known Text'),
    'wkb' => t('Well Known Binary'),
    'svg' => t('SVG'),
    'kml' => t('KML'),
    'gml' => t('GML'),
  );
}
?>