Contains properties to override the offline map's item properties. More...
Header: | #include <OfflineMapItemInfo.h> |
Since: | Esri::ArcGISRuntime 100.1 |
Public Functions
OfflineMapItemInfo(const Esri::ArcGISRuntime::OfflineMapItemInfo &other) | |
OfflineMapItemInfo(Esri::ArcGISRuntime::OfflineMapItemInfo &&other) | |
~OfflineMapItemInfo() | |
QString | accessInformation() const |
QString | description() const |
void | setAccessInformation(const QString &accessInformation) |
void | setDescription(const QString &description) |
void | setSnippet(const QString &snippet) |
void | setTags(const QStringList &tags) |
void | setTermsOfUse(const QString &termsOfUse) |
void | setThumbnail(const QImage &thumbnail) |
void | setTitle(const QString &title) |
QString | snippet() const |
QStringList | tags() const |
QString | termsOfUse() const |
QImage | thumbnail() const |
QString | title() const |
Esri::ArcGISRuntime::OfflineMapItemInfo & | operator=(const Esri::ArcGISRuntime::OfflineMapItemInfo &other) |
Esri::ArcGISRuntime::OfflineMapItemInfo & | operator=(Esri::ArcGISRuntime::OfflineMapItemInfo &&other) |
Detailed Description
When you generate an offline map using the GenerateOfflineMapJob, you can override some of the properties that are automatically provided by the web map, such as the title, thumbnail, and description. To do this set any of the OfflineMapItemInfo properties on the GenerateOfflineMapParameters::itemInfo.
Member Function Documentation
OfflineMapItemInfo::OfflineMapItemInfo (const Esri::ArcGISRuntime::OfflineMapItemInfo &other)
Copy constructor from other OfflineMapItemInfo.
OfflineMapItemInfo::OfflineMapItemInfo (Esri::ArcGISRuntime::OfflineMapItemInfo &&other)
Move constructor from other OfflineMapItemInfo.
OfflineMapItemInfo::~OfflineMapItemInfo ()
Destructor.
QString OfflineMapItemInfo::accessInformation () const
Returns the access information for the offline map.
See also setAccessInformation().
QString OfflineMapItemInfo::description() const
Returns the description text of the offline map.
See also setDescription().
void OfflineMapItemInfo::setAccessInformation (const QString &accessInformation )
Sets the access information for the offline map to accessInformation.
See also accessInformation().
void OfflineMapItemInfo::setDescription (const QString &description)
Sets the description text of the offline map to description.
See also description().
void OfflineMapItemInfo::setSnippet (const QString &snippet)
Sets the snippet text of the offline map to snippet.
See also snippet().
void OfflineMapItemInfo::setTags (const QStringList &tags)
Sets the user-defined tags that describe the offline map to tags.
See also tags().
[since Esri::ArcGISRuntime 100.4]
void OfflineMapItemInfo::setTermsOfUse (const QString &termsOfUse )
Sets the terms of use of the item to termsOfUse.
This property can contain HTML formatting.
This function was introduced in Esri::ArcGISRuntime 100.4.
See also termsOfUse().
void OfflineMapItemInfo::setThumbnail (const QImage &thumbnail)
Sets the thumbnail image to thumbnail.
See also thumbnail().
void OfflineMapItemInfo::setTitle (const QString &title)
Sets the title of the offline map to title.
See also title().
QString OfflineMapItemInfo::snippet() const
Returns the snippet text of the offline map.
See also setSnippet().
QStringList OfflineMapItemInfo::tags() const
Returns the user-defined tags that describe the offline map.
See also setTags().
[since Esri::ArcGISRuntime 100.4]
QString OfflineMapItemInfo::termsOfUse () const
Returns the terms of use of the item.
This property can contain HTML formatting.
This function was introduced in Esri::ArcGISRuntime 100.4.
See also setTermsOfUse().
QImage OfflineMapItemInfo::thumbnail() const
Returns the thumbnail image as a QImage.
See also setThumbnail().
QString OfflineMapItemInfo::title() const
Returns the title of the offline map.
See also setTitle().
Esri::ArcGISRuntime::OfflineMapItemInfo &OfflineMapItemInfo::operator=(const Esri::ArcGISRuntime::OfflineMapItemInfo &other)
Assignment operator from other OfflineMapItemInfo.
Esri::ArcGISRuntime::OfflineMapItemInfo &OfflineMapItemInfo::operator=(Esri::ArcGISRuntime::OfflineMapItemInfo &&other)
Move operator from other OfflineMapItemInfo.