You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we apply the count on the current map extent, we use two variables :
rawExtent: provided by newMove.rawExtendForLoad
wrapExtent: provided by newMove.extendForLoad
Those two variables are used to calculate the correct count at longitude 180.
But, actually rawExtendForLoad provided by the MapComponent is in reality a test extent and should be renamed rawExtendForTest. Therefore, wrapExtent is a load extent and rawExtent is test extent.
Those two extents have different aims and should not be compared at 180° comparing ==> wrapExtent should be provided by newMove.extendForTest instead of newMove.extendForLoad
The text was updated successfully, but these errors were encountered:
When we apply the
count
on the current map extent, we use two variables :rawExtent
: provided by newMove.rawExtendForLoadwrapExtent
: provided by newMove.extendForLoadThose two variables are used to calculate the correct
count
at longitude 180.But, actually
rawExtendForLoad
provided by the MapComponent is in reality a test extent and should be renamedrawExtendForTest
. Therefore,wrapExtent
is a load extent andrawExtent
is test extent.Those two extents have different aims and should not be compared at 180° comparing ==>
wrapExtent
should be provided bynewMove.extendForTest
instead ofnewMove.extendForLoad
The text was updated successfully, but these errors were encountered: