@@ -119,7 +119,7 @@ export const getMarkerOptionTypes = (...markers: Array<MarkerOptions>) =>
119
119
*
120
120
* @param type Target animal type
121
121
*/
122
- export const getNeedZoneCounts = ( type : AnimalType ) =>
122
+ const getNeedZoneCounts = ( type : AnimalType ) =>
123
123
animalMarkerNeedZoneCounts . get ( type ) ?? [ 0 , 0 , 0 ] ;
124
124
125
125
/**
@@ -164,10 +164,8 @@ export const isGenericMarkerType = (
164
164
* @param marker Marker to validate
165
165
* @param options Target filter options
166
166
*/
167
- export const isMarkerFiltered = (
168
- marker : MarkerOptions ,
169
- options : MapFilterOptions ,
170
- ) => hasListValue ( marker . type , options . types ) ;
167
+ const isMarkerFiltered = ( marker : MarkerOptions , options : MapFilterOptions ) =>
168
+ hasListValue ( marker . type , options . types ) ;
171
169
172
170
/**
173
171
* Determine if a marker is visible at the current map scale
@@ -176,7 +174,7 @@ export const isMarkerFiltered = (
176
174
* @param type Marker type
177
175
* @param visibilityMap Map of marker types and their minimum visibility scale
178
176
*/
179
- export const isMarkerVisibleAtScale = (
177
+ const isMarkerVisibleAtScale = (
180
178
mapScale : number ,
181
179
type : MarkerType ,
182
180
visibilityMap : Map < MarkerType , number > ,
0 commit comments