私の推測では、あなたのリンクは、iPhone が組み込みまたはサードパーティのアプリで認識して処理できるものです。
組み込みの iOS アプリについては、次のドキュメントを確認してください。
Google マップを使用したい場合は、iOS 用の Google マップ URL スキームを確認してください
または Waze の場合:パラメータを使用して Waze iOS クライアントを起動する
等
また、mobile-config.jsに適切なApp.acessRule権限が含まれていることを確認してください。
App.accessRule('https://www.google.si/maps/*', {launchExternal:true});
// needed for navigation on iOS:
App.accessRule('https://*.google.com/*', {launchExternal:true});
App.accessRule('https://*.googleapis.com/*', {launchExternal:true});
App.accessRule('https://*.gstatic.com/*', {launchExternal:true});
// needed for Apple Maps
App.accessRule('http://maps.apple.com/*', {launchExternal:true});
お役に立てれば。
そうでない場合は、ボタンで使用されているリンクの例を提供してください。または、Meteor アプリで使用されている特定の Cordova プラグインを使用しているかどうかを詳しく説明します。