You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/**************************************************************************
* 文件名 : tigeotilefetcher.h
* =======================================================================
* 创 建 者 :田小帆
* 创建日期 : 2021-5-12
* 邮 箱 : 499131808@qq.com
* Q Q : 499131808
* 公 司 :
* 功能描述 :
*
* ======================================================================
* 修改者 :
* 修改日期 :
* 修改内容 :
* ======================================================================
*
***************************************************************************/
# pragma once
# include <private/qgeotilefetcher_p.h>
# include <QNetworkAccessManager>
class TiGeoTileFetcher : public QGeoTileFetcher
{
public :
TiGeoTileFetcher ( const QVariantMap & parameters , QGeoMappingManagerEngine * parent ) ;
// QGeoTileFetcher interface
private :
QGeoTiledMapReply * getTileImage ( const QGeoTileSpec & spec ) override ;
private :
QNetworkAccessManager * m_networkManager = nullptr ;
} ;