2

我需要找到一种从 Blackberry 10 上的浏览​​器打开本机地图应用程序的方法。我的 Web 应用程序在纯浏览器中运行,而不使用 WebWorks

我想它必须是一个 URI 方案,应该提供一种简单的方法来执行此操作。我已经为 iOS、Android 和 WP8 做过这个。但是黑莓 10 设备给我带来了真正的痛苦。

同样,我的 Web 应用程序可以在 BB10 设备上的浏览器中运行。

4

4 回答 4

2

因为最近有关于黑莓如何做到这一点的文档。

使用所需的 urischeme 扩展“bar-descriptor.xml”文件:

<invoke-target id="com.mycompany.myapplication">
<type>APPLICATION</type>

<filter>
  <action>bb.action.VIEW</action>
  <mime-type>*</mime-type>
  <property var="uris" value="activetext:"/>
</filter>

<invoke-target-pattern>      
  <pattern-value type="uri">activetext:</pattern-value>    
</invoke-target-pattern>

之后在应用程序代码中(来自 BlackBerry 文档):

// File: service.cpp
#include "service.hpp"

#include <bb/Application>
#include <bb/platform/Notification>
#include <bb/platform/NotificationDefaultApplicationSettings>
#include <bb/system/InvokeManager>

using namespace bb::platform;
using namespace bb::system;

Service::Service() :
         QObject(),
         m_notify(new Notification(this)),
         m_invokeManager(new InvokeManager(this))
{
    // Whenever the app is invoked, call handleInvoke()
    m_invokeManager->connect(m_invokeManager,
        SIGNAL(invoked(const bb::system::InvokeRequest&)),
        this,
        SLOT(handleInvoke(const bb::system::InvokeRequest&)));

    // Configure app to allow notifications
    NotificationDefaultApplicationSettings settings;
    settings.setPreview(NotificationPriorityPolicy::Allow);
    settings.apply();

    // Set a common notification title
    m_notify->setTitle("Headless service");
}

void Service::handleInvoke(
                    const bb::system::InvokeRequest & request)
{
  // Check if timer trigger invoked the app
  if (request.action().compare("bb.action.VIEW") 
                               == 0) {
      m_notify->setBody("Timer alert!");
      Notification::clearEffectsForAll();
      Notification::deleteAllFromInbox();
      m_notify->notify();
      // Do necessary handling here.
      qDebug() << request.uri();

  }
}

黑莓文档

于 2016-02-05T10:28:20.030 回答
1

我现在有类似的问题,我可以打开本机应用程序,但它总是会显示在当前位置,并且不会有指向不同位置的指针(我无法将任何参数传递到地图中),但是打开地图,只需使用

var url = "地图:任何地址"; //地址不会有什么不同,因为我不能传递参数。window.open(url);

(在黑莓 Z10 上测试)

于 2013-08-23T18:31:58.193 回答
0

看起来没有网络工程那是行不通的。刚刚尝试了 geo: URI,但它们不适用于应用程序。在 BB 浏览器中,它们工作正常,但在应用程序中却不行。

于 2014-02-19T13:08:44.900 回答
-1

试试这些 URI:

geo:-34.6033,-58.3817(阿根廷布宜诺斯艾利斯)

geo:52.5167,13.3833(德国柏林)

在浏览器中为我工作。

于 2013-10-03T08:19:27.653 回答