[Solved] Level of zoom is different in free vs Silver vs Gold

I’m currently at Gold subscription

3 Likes

There you go…bummer. Thanks for your time & help.

1 Like

@Robdam1001 cleared app cache? maybe clear app data for fresh start?

1 Like

Arome covers France. HRRR is in Gold. See: datasources in help

2 Likes

Can you zoom out to see the whole world?

2 Likes

I can confirm that Gold is required in order to achieve the level of zoom that I desire. I upgraded from Silver to Gold to confirm. I’ll be downgrading back down to Silver. Thanks again all. Seems like a great, helpful community here! @duane

3 Likes

Big apologies. There is a bug in my “simple” code. 10 points to the person who can see it:

fun getZoomRange(defaultZoomRange: FloatArray): FloatArray? {
        if (proAssets.hasProLevel("gold") || proAssets.hasProLevel("expmarine")) {
            return floatArrayOf(defaultZoomRange[0], 11.99f)
        }
        if (proAssets.hasProLevel("silver")) {
            floatArrayOf(defaultZoomRange[0], 9.99f)
        }
        return defaultZoomRange
    }

It’s obvious now but it took ages to find.

Sorry for the problems @Robdam1001.

2 Likes

have no idea but what the heck I guess

1 Like

2nd guess would be

1 Like

or the 9.99f/11.99f

1 Like

Return is missing for silver

3 Likes

Is the

correct?

1 Like

@Robdam1001 I took the liberty to update the topic.
Hope you don’t mind.

3 Likes

@Ohan highly annoyed :rage::rage::rage: haha it’s all good it’s what we’re here for Thanks

1 Like

No problem, thanks!


1 Like

10 points to @tiwag :slight_smile:

3 Likes