腾讯地图插件无法使用?
发布于 7 年前 作者 duanli 19389 次浏览 来自 问答

在小程序后台第三方服务添加腾讯地图插件后,配置如下

app.json

{

  “plugins”: {

    “tencentMap”: {

      “version”: “1.0.5”,

      “provider”: “wx5bc2ac602a747594”

    }

  }

}

the_page.json

{

  “usingComponents”: {

    “map-route”: “plugin://tencentMap/mapRoute”

  }

}

在开发工具上可以显示,但在console 里可以看到如下错误

在真机上(ios, android)页面则无法显示,错误如下

插件Bug?还是有什么明显的东西没有配置?腾讯地图插件应该是所有小程序都可以使用的吧?

谢谢!

3 回复

楼主解决了吗?

我的是出现这个报错,不知道哪里不对

补充下

wxml:

        <map-route route-info="{{ routeInfo }}"></map-route>

js:

       const routeInfo = {

            startLat: 39.90469, 

            startLng: 116.40717, 

            startName: “我的位置”,

            endLat: pointInfo.location.lat,

            endLng: pointInfo.location.lon,

            endName: pointInfo.name,

            mode: “car”

        }

        this.setData({

            routeInfo

        })

回到顶部