Archived:Ovi Maps API - Getting the ID of Components attached to a map
m (Jasfox - - →For more on Ovi Maps API) |
m (Jasfox - - →For more on Ovi Maps API) |
||
| Line 81: | Line 81: | ||
For reference the old Ovi Maps API documentation is archived here: | For reference the old Ovi Maps API documentation is archived here: | ||
| − | * [http://api.maps.ovi.com] | + | * [http://api.maps.ovi.com Ovi Maps] |
For the latest Nokia Maps API full documentation and API reference here: | For the latest Nokia Maps API full documentation and API reference here: | ||
Revision as of 15:55, 3 January 2013
See Also
Contents |
Introduction
Within the code, it maybe useful to find out what are the Components that currently are attached to a map display instance.
Prerequisites
Ovi Maps API supported web browser (basically any modern web browser)
The example assumes you have already added the Ovi Maps to your web page as explained in the previous article "Ovi Maps - add the map to any web page"
Important about Maps credentials
With Ovi Maps API you can start without having any credentials given, but you might face a performance gap. In order to get the full potential out of the offering, you must get the credentials that authenticate your application against the Services. Please read through the Location API.
For more information on how to obtain the credentials, please start with the Ovi Maps API Developers Guide section "Acquiring API credentials"
Implementation
The API reference states:
getId () : String // Returns a unique identifier of the Component. It is not allowed to add two Components with the same id to a map.
So, If previously created a component variable type of Copyright, the getId would return:
result = component.getId()
The result would have the value of string "Copyright".
It is also possible to query the component's version.
The API reference states:
getVersion () : String
Returns the version of the component. The version of the component in the format "major.minor.update.revision" where the values may be omitted from right to left. This scheme should be used to make version numbers comparable.
result = component.getVersion
For more on Ovi Maps API
For reference the old Ovi Maps API documentation is archived here:
For the latest Nokia Maps API full documentation and API reference here:
You may also access the interactive API explorer
Tested with
Google Chrome 11.0x Mozilla Firefox 5.0

