function _gmap_geo_simplify_cmp_order in GMap Addons 7
Same name and namespace in other branches
- 6 gmap_geo/simplify.inc \_gmap_geo_simplify_cmp_order()
1 string reference to '_gmap_geo_simplify_cmp_order'
- gmap_geo_simplify in gmap_geo/
simplify.inc - This function would probably work for lines as well as polygons, but you still have to feed it a centroid.
File
- gmap_geo/
simplify.inc, line 158
Code
function _gmap_geo_simplify_cmp_order($a, $b) {
return $a['order'] < $b['order'] ? 1 : ($a['order'] != $b['order'] ? -1 : 0);
}