#include "qmapbox.hpp" #include #include #include #include #if QT_VERSION >= 0x050000 #include #else #include #endif // mbgl::NetworkStatus::Status static_assert(mbgl::underlying_type(QMapbox::Online) == mbgl::underlying_type(mbgl::NetworkStatus::Status::Online), "error"); static_assert(mbgl::underlying_type(QMapbox::Offline) == mbgl::underlying_type(mbgl::NetworkStatus::Status::Offline), "error"); // mbgl::FeatureType static_assert(mbgl::underlying_type(QMapbox::Feature::PointType) == mbgl::underlying_type(mbgl::FeatureType::Point), "error"); static_assert(mbgl::underlying_type(QMapbox::Feature::LineStringType) == mbgl::underlying_type(mbgl::FeatureType::LineString), "error"); static_assert(mbgl::underlying_type(QMapbox::Feature::PolygonType) == mbgl::underlying_type(mbgl::FeatureType::Polygon), "error"); namespace QMapbox { /*! \namespace QMapbox \inmodule Mapbox Maps SDK for Qt Contains miscellaneous Mapbox bindings used throughout QMapboxGL. */ /*! \typedef QMapbox::Coordinate Alias for QPair. Representation for geographical coordinates - latitude and longitude, respectively. */ /*! \typedef QMapbox::CoordinateZoom Alias for QPair. Used as return value in QMapboxGL::coordinateZoomForBounds. */ /*! \typedef QMapbox::ProjectedMeters Alias for QPair. Representation for projected meters - northing and easting, respectively. */ /*! \typedef QMapbox::Coordinates Alias for QList. A list of QMapbox::Coordinate objects. */ /*! \typedef QMapbox::CoordinatesCollection Alias for QList. A list of QMapbox::Coordinates objects. */ /*! \typedef QMapbox::CoordinatesCollections Alias for QList. A list of QMapbox::CoordinatesCollection objects. */ /*! \class QMapbox::Feature \inmodule Mapbox Maps SDK for Qt Represents \l {https://www.mapbox.com/help/define-features/}{map features} via its \a type (PointType, LineStringType or PolygonType), \a geometry, \a properties map and \a id (optional). */ /*! \enum QMapbox::Feature::Type This enum is used as basis for geometry disambiguation in QMapbox::Feature. \value PointType A point geometry type. Means a single or a collection of points. \value LineStringType A line string geometry type. Means a single or a collection of line strings. \value PolygonType A polygon geometry type. Means a single or a collection of polygons. */ /*! \class QMapbox::ShapeAnnotationGeometry \inmodule Mapbox Maps SDK for Qt Represents a shape annotation geometry. */ /*! \enum QMapbox::ShapeAnnotationGeometry::Type This enum is used as basis for shape annotation geometry disambiguation. \value PolygonType A polygon geometry type. \value LineStringType A line string geometry type. \value MultiPolygonType A polygon geometry collection type. \value MultiLineStringType A line string geometry collection type. */ /*! \class QMapbox::SymbolAnnotation \inmodule Mapbox Maps SDK for Qt A symbol annotation comprises of its geometry and an icon identifier. */ /*! \class QMapbox::LineAnnotation \inmodule Mapbox Maps SDK for Qt Represents a line annotation object, along with its properties. A line annotation comprises of its geometry and line properties such as opacity, width and color. */ /*! \class QMapbox::FillAnnotation \inmodule Mapbox Maps SDK for Qt Represents a fill annotation object, along with its properties. A fill annotation comprises of its geometry and fill properties such as opacity, color and outline color. */ /*! \typedef QMapbox::Annotation Alias for QVariant. Container that encapsulates either a symbol, a line, a fill or a style sourced annotation. */ /*! \typedef QMapbox::AnnotationID Alias for quint32 representing an annotation identifier. */ /*! \typedef QMapbox::AnnotationIDs Alias for QList representing a container of annotation identifiers. */ /*! \class QMapbox::CustomLayerHostInterface Represents a host interface to be implemented for rendering custom layers. \warning This is used for delegating the rendering of a layer to the user of this API and is not officially supported. Use at your own risk. */ /*! \enum QMapbox::NetworkMode This enum represents whether server requests can be performed via network. \value Online Server network requests are accessible. \value Offline Only requests to the local cache are accessible. */ /*! \class QMapbox::CustomLayerRenderParameters \inmodule Mapbox Maps SDK for Qt QMapbox::CustomLayerRenderParameters provides the data passed on each render pass for a custom layer. */ /*! \fn QMapbox::NetworkMode QMapbox::networkMode() Returns the current QMapbox::NetworkMode. */ NetworkMode networkMode() { return static_cast(mbgl::NetworkStatus::Get()); } /*! \fn void QMapbox::setNetworkMode(QMapbox::NetworkMode mode) Forwards the network status \a mode to Mapbox GL Native engine. File source requests uses the available network when \a mode is set to \b Online, otherwise scoped to the local cache. */ void setNetworkMode(NetworkMode mode) { mbgl::NetworkStatus::Set(static_cast(mode)); } /*! \fn QList >& QMapbox::defaultStyles() Returns a list containing a pair of string objects, representing the style URL and name, respectively. */ QList >& defaultStyles() { static QList> styles; if (styles.isEmpty()) { for (auto style : mbgl::util::default_styles::orderedStyles) { styles.append(QPair( QString::fromStdString(style.url), QString::fromStdString(style.name))); } } return styles; } } // namespace QMapbox