在mapbox样式上添加openweathermap png tile图层

时间:2018-05-02 06:58:15

标签: qt styles mapbox openweathermap

我正在尝试在地图集地图样式上实现https://openweathermap.org/api/weathermaps的openweathermap地图天气图层,但我不知道将图像平铺源放在json文件上的位置。我可以帮忙吗? 谢谢。我正在使用Mapbox for Qt,这是我的代码,我正在使用Qt的Mapbox地图,这是我的QML代码

   MapParameter {
                id: source
                type: "source"
                property var name: "weatherSource"
                property var sourceType: "raster"
                property var url: "https://tile.openweathermap.org/"
property var tiles:  
["https://tile.openweathermap.org/map/clouds_new/{z}/{x}/{y}.png?appid=API_ID"]
                property var tileSize: 256
                property var scheme: "xyz"
                property var minzoom: 4.0
                property var maxzoom: 20.0}
   MapParameter {
                type: "layer"
                property var name: "wind_weather"
                property var layerType: "raster"
                property var source: "weatherSource"}

1 个答案:

答案 0 :(得分:0)

对源“tiles”属性的支持尚未实现。我打算在https://bugreports.qt.io打开关于此功能请求的票证 - 谢谢!