使用OpenLayers 5 + OpenWeatherMap,图层不会显示在底图上方

时间:2019-04-06 17:21:36

标签: javascript jquery

我正在使用OpenLayers和OpenWeatherMap Api在openlayers底图上方加载图层。底图可以正确加载,但是诸如降水和温度之类的图层不会显示在底图上方。我检查了值是否正确通过了网址

我尝试设置图层的不透明度并将图层的visible属性更改为true,但问题仍然存在

exports.get_landlord_books = async (req, res) => {
    let offers = await Offer.find( {author: req.userData.userId});

    if (offers) {
        Book.find({
            'offer': { $in: offers}
        }).populate('tenant', 'email').then(books => {
            res.status(200).json({books: books})
        }).catch(err => {
            console.log(err);
            res.status(500).json({error: err.message})
        });
    } else {
        console.log('no booked offers for this user')
    }
};

温度层应该已经加载到底图之上,但是没有加载。

0 个答案:

没有答案