I need to show map in facebook messenger bot. According to documentation following code should work but I only see message and place icon. Has anyone faced similar issue.
  var messageData = {
    recipient: {
      id: userId
    },
    message: {
      text: msg,
      metadata: "DEVELOPER_DEFINED_METADATA",
      quick_replies: [
        {
          "content_type": "location"
        }
      ]
    }
  };
  callSendAPI(messageData);
}