PluginParameterThe PluginParameter element describes a parameter to a Plugin. More... Inherits QtObject This type was introduced in Qt Location 5.0. PropertiesDetailed DescriptionThe PluginParameter element is used to provide a parameter of some kind to a Plugin. Typically these parameters contain details like an application token for access to a service, or a proxy server to use for network access. To set such a parameter, declare a PluginParameter inside a Plugin element, and give it name and value properties. A list of valid parameter names for each plugin is available from the plugin reference page (linked from the QtLocation module page). Example UsageThe following example shows an instantiation of the Nokia plugin with a mapping API token specific to the application. Plugin { name: "nokia" PluginParameter { name: "mapping.token"; value: "SOMETOKEN123" } } Property DocumentationThis property holds the name of the plugin parameter as a single formatted string. This property holds the value of the plugin parameter which support different types of values (variant). |