ufJSActions.actions.yahoo_maps_rdfa = {
  description: "Find with Yahoo! Maps (RDFa)",
  icon: "http://www.yahoo.com/favicon.ico",
  scope: {
    semantic: {
      "RDFa" :  {
        property : "http://www.w3.org/2003/01/geo/wgs84_pos#lat",
        defaultNS : "http://www.w3.org/2003/01/geo/wgs84_pos#"
      }
    }
  },
  doAction: function(geo, type) {
    if (type != "RDFa") return;
    if (geo.lat && geo["long"]) {
      return "http://maps.yahoo.com/?lat=" + geo.lat + "&lon=" + geo["long"] + "&mag=3";
    }
  }
};

