ios - What does the fadeTime for the Citymaps SDK's CEMarker class represent? -


documentation claims this:

/** how long takes marker fade in , out when visibility changes. */ @property (nonatomic, assign) cgfloat fadetime; 

does cgfloat value represent seconds? milliseconds? no matter value supply:

[marker setfadetime:3000.0f]; // assume milliseconds 

or

marker.fadetime = 3.0f;       // assume seconds 

it doesn't seem change behavior. appreciated.

(apologies - not enough reputation points yet create citymaps tag - 1500+ members, please feel free assist!)

thanks

i developer @ citymaps. putting our, rather bare, documentation. looking @ docs made me realize we're missing few key properties on markers, both on ios , android (oops).

to answer question, fadetime adjust speed marker fades in or out when visibility changes. right now, visibility changed through collision detection feature of cemarkergroup. 1 of missing properties mentioned 'hidden' property ios, or 'visibility' property on android, similar respective view class.

i've updated our docs bit answer question of unit value is. try follow convention of platform. ios, value in seconds. on android, value in milliseconds.


Comments

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -