@foodmarketmaker/mapag 0.0.20 → 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15574,18 +15574,36 @@ class NAASSettings {
15574
15574
  }
15575
15575
 
15576
15576
  class NaicsMapperSettings {
15577
+ naicsCode;
15577
15578
  type = 'circle';
15578
15579
  visible = true;
15579
- radius = 8;
15580
- color = '#1f77b4';
15580
+ color = '#1f77b4'; // Both Icon and Circle color
15581
15581
  opacity = 0.8;
15582
- strokeWidth = 1;
15582
+ radius = 7;
15583
+ strokeWidth = 0;
15583
15584
  strokeColor = '#ffffff';
15584
15585
  iconUrl = '';
15585
15586
  iconName = 'naics-icon';
15586
15587
  iconSize = 0.8;
15587
15588
  iconAllowOverlap = true;
15588
15589
  iconSdf = false;
15590
+ iconHaloWidth = 0;
15591
+ iconHaloColor = '#000000';
15592
+ iconOpacity = 1;
15593
+ heatColor = [
15594
+ 'interpolate',
15595
+ ['linear'],
15596
+ ['heatmap-density'],
15597
+ 0, 'rgba(0, 0, 255, 0)',
15598
+ 0.1, 'royalblue',
15599
+ 0.3, 'cyan',
15600
+ 0.5, 'lime',
15601
+ 0.7, 'yellow',
15602
+ 1, 'red',
15603
+ ];
15604
+ heatWeight = 1;
15605
+ heatIntensity = 1;
15606
+ heatRadius = 1;
15589
15607
  }
15590
15608
  class NaicsMapper {
15591
15609
  legends = [];
@@ -15602,7 +15620,6 @@ class NaicsMapper {
15602
15620
  CIRCLE_LAYER_ID;
15603
15621
  ICON_LAYER_ID;
15604
15622
  HEATMAP_LAYER_ID;
15605
- currentFilter;
15606
15623
  settings = signal(new NaicsMapperSettings(), ...(ngDevMode ? [{ debugName: "settings" }] : []));
15607
15624
  constructor(settings, id = 'naics-' + Math.random().toString(36)) {
15608
15625
  this.id = id;
@@ -15651,6 +15668,9 @@ class NaicsMapper {
15651
15668
  map.setLayoutProperty(this.ICON_LAYER_ID, 'icon-size', settings.iconSize);
15652
15669
  map.setPaintProperty(this.ICON_LAYER_ID, 'icon-color', settings.color);
15653
15670
  map.setLayoutProperty(this.ICON_LAYER_ID, 'icon-allow-overlap', settings.iconAllowOverlap);
15671
+ map.setPaintProperty(this.ICON_LAYER_ID, 'icon-opacity', settings.iconOpacity);
15672
+ map.setPaintProperty(this.ICON_LAYER_ID, 'icon-halo-width', settings.iconHaloWidth);
15673
+ map.setPaintProperty(this.ICON_LAYER_ID, 'icon-halo-color', settings.iconHaloColor);
15654
15674
  }
15655
15675
  break;
15656
15676
  case 'heatmap':
@@ -15658,6 +15678,9 @@ class NaicsMapper {
15658
15678
  map.setLayoutProperty(this.HEATMAP_LAYER_ID, 'visibility', settings.visible ? 'visible' : 'none');
15659
15679
  map.setPaintProperty(this.HEATMAP_LAYER_ID, 'heatmap-radius', settings.radius);
15660
15680
  map.setPaintProperty(this.HEATMAP_LAYER_ID, 'heatmap-opacity', settings.opacity);
15681
+ map.setPaintProperty(this.HEATMAP_LAYER_ID, 'heatmap-color', settings.heatColor);
15682
+ map.setPaintProperty(this.HEATMAP_LAYER_ID, 'heatmap-weight', settings.heatWeight);
15683
+ map.setPaintProperty(this.HEATMAP_LAYER_ID, 'heatmap-intensity', settings.heatIntensity);
15661
15684
  }
15662
15685
  break;
15663
15686
  }
@@ -15671,7 +15694,6 @@ class NaicsMapper {
15671
15694
  this.count = 0;
15672
15695
  this.total = 0;
15673
15696
  this.legends = [];
15674
- this.currentFilter = undefined;
15675
15697
  }
15676
15698
  clear() {
15677
15699
  if (!this.map) {
@@ -15686,7 +15708,6 @@ class NaicsMapper {
15686
15708
  this.map.off('touchend', this.CIRCLE_LAYER_ID, this.onClick);
15687
15709
  this.map.off('touchend', this.ICON_LAYER_ID, this.onClick);
15688
15710
  this.count = 0;
15689
- this.currentFilter = undefined;
15690
15711
  }
15691
15712
  updateLegends() { }
15692
15713
  // Method to create PMTiles layers
@@ -15784,6 +15805,9 @@ class NaicsMapper {
15784
15805
  paint: {
15785
15806
  // Additional paint properties can be added here if needed
15786
15807
  'icon-color': settings.color,
15808
+ 'icon-opacity': settings.iconOpacity,
15809
+ 'icon-halo-width': settings.iconHaloWidth,
15810
+ 'icon-halo-color': settings.iconHaloColor,
15787
15811
  }
15788
15812
  }, StandardLayersMapper.POINTS);
15789
15813
  break;
@@ -15797,19 +15821,9 @@ class NaicsMapper {
15797
15821
  visibility: settings.visible ? 'visible' : 'none',
15798
15822
  },
15799
15823
  paint: {
15800
- 'heatmap-weight': 1,
15801
- 'heatmap-intensity': 1,
15802
- 'heatmap-color': [
15803
- 'interpolate',
15804
- ['linear'],
15805
- ['heatmap-density'],
15806
- 0, 'rgba(0, 0, 255, 0)',
15807
- 0.1, 'royalblue',
15808
- 0.3, 'cyan',
15809
- 0.5, 'lime',
15810
- 0.7, 'yellow',
15811
- 1, 'red',
15812
- ],
15824
+ 'heatmap-weight': settings.heatWeight,
15825
+ 'heatmap-intensity': settings.heatIntensity,
15826
+ 'heatmap-color': settings.heatColor,
15813
15827
  'heatmap-radius': settings.radius,
15814
15828
  'heatmap-opacity': settings.opacity,
15815
15829
  },
@@ -15817,13 +15831,12 @@ class NaicsMapper {
15817
15831
  break;
15818
15832
  }
15819
15833
  // Reapply filter if exists
15820
- if (this.currentFilter) {
15821
- this.filterByNaicsCode(map, this.currentFilter);
15834
+ if (settings.naicsCode) {
15835
+ this.filterByNaicsCode(map, settings.naicsCode);
15822
15836
  }
15823
15837
  }
15824
15838
  // Method to filter by NAICS code (startsWith match)
15825
15839
  filterByNaicsCode(map, naicsCode) {
15826
- this.currentFilter = naicsCode;
15827
15840
  const filter = naicsCode ? ['==', ['slice', ['get', 'NAICS_CODE'], 0, naicsCode.length], naicsCode] : null;
15828
15841
  const layerId = this.getActiveLayerId();
15829
15842
  if (map.getLayer(layerId)) {
@@ -15900,6 +15913,128 @@ class NaicsMapper {
15900
15913
  return html;
15901
15914
  }
15902
15915
  }
15916
+ const Codes = [
15917
+ { ID: '111219', Category: 'Farmers and Ranchers', Name: 'Other Vegetable (Except Potato) & Melon Farming' },
15918
+ { ID: '111310', Category: 'Farmers and Ranchers', Name: 'Orange Groves' },
15919
+ { ID: '111320', Category: 'Farmers and Ranchers', Name: 'Citrus (Except Orange) Groves' },
15920
+ { ID: '111331', Category: 'Farmers and Ranchers', Name: 'Apple Orchards' },
15921
+ { ID: '111332', Category: 'Farmers and Ranchers', Name: 'Grape Vineyards' },
15922
+ { ID: '111334', Category: 'Farmers and Ranchers', Name: 'Berry (Except Strawberry) Farming' },
15923
+ { ID: '111335', Category: 'Farmers and Ranchers', Name: 'Tree Nut Farming' },
15924
+ { ID: '111336', Category: 'Farmers and Ranchers', Name: 'Fruit & Tree Nut Combination Farming' },
15925
+ { ID: '111339', Category: 'Farmers and Ranchers', Name: 'Other Noncitrus Fruit Farming' },
15926
+ { ID: '111411', Category: 'Farmers and Ranchers', Name: 'Mushroom Production' },
15927
+ { ID: '111419', Category: 'Farmers and Ranchers', Name: 'Other Food Crops Grown Under Cover' },
15928
+ { ID: '112111', Category: 'Farmers and Ranchers', Name: 'Beef Cattle Ranching & Farming' },
15929
+ { ID: '112112', Category: 'Farmers and Ranchers', Name: 'Cattle Feedlots' },
15930
+ { ID: '112910', Category: 'Farmers and Ranchers', Name: 'Apiculture' },
15931
+ { ID: '111110', Category: 'Farmers and Ranchers', Name: 'Soybean Farming' },
15932
+ { ID: '111140', Category: 'Farmers and Ranchers', Name: 'Wheat Farming' },
15933
+ { ID: '111150', Category: 'Farmers and Ranchers', Name: 'Corn Farming' },
15934
+ { ID: '111160', Category: 'Farmers and Ranchers', Name: 'Rice Farming' },
15935
+ { ID: '111199', Category: 'Farmers and Ranchers', Name: 'All Other Grain Farming' },
15936
+ { ID: '111211', Category: 'Farmers and Ranchers', Name: 'Potato Farming' },
15937
+ { ID: '111421', Category: 'Farmers and Ranchers', Name: 'Nursery & Tree Production' },
15938
+ { ID: '111422', Category: 'Farmers and Ranchers', Name: 'Floriculture Production' },
15939
+ { ID: '111910', Category: 'Farmers and Ranchers', Name: 'Tobacco Farming' },
15940
+ { ID: '111910', Category: 'Farmers and Ranchers', Name: 'Tobacco Farming' },
15941
+ { ID: '111920', Category: 'Farmers and Ranchers', Name: 'Cotton Farming' },
15942
+ { ID: '111998', Category: 'Farmers and Ranchers', Name: 'All Other Miscellaneous Crop Farming' },
15943
+ { ID: '111998', Category: 'Farmers and Ranchers', Name: 'All Other Miscellaneous Crop Farming' },
15944
+ { ID: '112120', Category: 'Farmers and Ranchers', Name: 'Dairy Cattle & Milk Production' },
15945
+ { ID: '112210', Category: 'Farmers and Ranchers', Name: 'Hog & Pig Farming' },
15946
+ { ID: '112310', Category: 'Farmers and Ranchers', Name: 'Chicken Egg Production' },
15947
+ { ID: '112320', Category: 'Farmers and Ranchers', Name: 'Broilers & Other Meat Type Chicken Production' },
15948
+ { ID: '112330', Category: 'Farmers and Ranchers', Name: 'Turkey Production' },
15949
+ { ID: '112340', Category: 'Farmers and Ranchers', Name: 'Poultry Hatcheries' },
15950
+ { ID: '112390', Category: 'Farmers and Ranchers', Name: 'Other Poultry Production' },
15951
+ { ID: '112410', Category: 'Farmers and Ranchers', Name: 'Sheep Farming' },
15952
+ { ID: '112420', Category: 'Farmers and Ranchers', Name: 'Goat Farming' },
15953
+ { ID: '112930', Category: 'Farmers and Ranchers', Name: 'Fur-Bearing Animal & Rabbit Production' },
15954
+ { ID: '112990', Category: 'Farmers and Ranchers', Name: 'All Other Animal Production' },
15955
+ { ID: '112511', Category: 'Fisheries', Name: 'Finfish Farming & Fish Hatcheries' },
15956
+ { ID: '112512', Category: 'Fisheries', Name: 'Shellfish Farming' },
15957
+ { ID: '112519', Category: 'Fisheries', Name: 'Other Aquaculture' },
15958
+ { ID: '311211', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Flour Milling' },
15959
+ { ID: '311212', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Rice Milling' },
15960
+ { ID: '311213', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Malt Manufacturing' },
15961
+ { ID: '311221', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Wet Corn Milling' },
15962
+ { ID: '311224', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Soybean & Other Oilseed Processing' },
15963
+ { ID: '311225', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Fats & Oils Refining & Blending' },
15964
+ { ID: '311230', Category: 'Milling, Grain and Oilseed Processors and Manufacturers', Name: 'Breakfast Cereal Manufacturing' },
15965
+ { ID: '311313', Category: 'Sugar and Confectionary Processors and Manufacturers', Name: 'Beet Sugar Manufacturing' },
15966
+ { ID: '311314', Category: 'Sugar and Confectionary Processors and Manufacturers', Name: 'Cane Sugar Manufacturing' },
15967
+ { ID: '311340', Category: 'Sugar and Confectionary Processors and Manufacturers', Name: 'Nonchocolate Confectionery Manufacturing' },
15968
+ { ID: '311351', Category: 'Sugar and Confectionary Processors and Manufacturers', Name: 'Chocolate/Confectionery Mfg From Cacao Beans' },
15969
+ { ID: '311352', Category: 'Sugar and Confectionary Processors and Manufacturers', Name: 'Confectionery Mfg From Purchased Chocolate' },
15970
+ { ID: '311411', Category: 'Frozen Food Processors', Name: 'Frozen Fruit Juice & Vegetable Manufacturing' },
15971
+ { ID: '311412', Category: 'Frozen Food Processors', Name: 'Frozen Specialty Food Manufacturing' },
15972
+ { ID: '311421', Category: 'Canneries', Name: 'Fruit & Vegetable Canning' },
15973
+ { ID: '311422', Category: 'Canneries', Name: 'Specialty Canning' },
15974
+ { ID: '311423', Category: 'Canneries', Name: 'Dried & Dehydrated Food Manufacturing' },
15975
+ { ID: '311511', Category: 'Dairy Processors', Name: 'Fluid Milk Manufacturing' },
15976
+ { ID: '311512', Category: 'Dairy Processors', Name: 'Creamery Butter Manufacturing' },
15977
+ { ID: '311513', Category: 'Dairy Processors', Name: 'Cheese Manufacturing' },
15978
+ { ID: '311514', Category: 'Dairy Processors', Name: 'Dry Condensed & Evaporated Dairy Products Mfg' },
15979
+ { ID: '311520', Category: 'Dairy Processors', Name: 'Ice Cream & Frozen Dessert Manufacturing' },
15980
+ { ID: '311611', Category: 'Meat and Seafood Processors', Name: 'Animal (Except Poultry) Slaughtering' },
15981
+ { ID: '311612', Category: 'Meat and Seafood Processors', Name: 'Meat Processed From Carcasses' },
15982
+ { ID: '311613', Category: 'Meat and Seafood Processors', Name: 'Rendering & Meat Byproduct Processing' },
15983
+ { ID: '311615', Category: 'Meat and Seafood Processors', Name: 'Poultry Processing' },
15984
+ { ID: '311710', Category: 'Meat and Seafood Processors', Name: 'Seafood Product Preparation & Packaging' },
15985
+ { ID: '311811', Category: 'Bakeries', Name: 'Retail Bakeries' },
15986
+ { ID: '311812', Category: 'Bakeries', Name: 'Commercial Bakeries' },
15987
+ { ID: '311813', Category: 'Bakeries', Name: 'Frozen Cakes Pies & Other Pastries Manufacturing' },
15988
+ { ID: '311821', Category: 'Bakeries', Name: 'Cookie & Cracker Manufacturing' },
15989
+ { ID: '311824', Category: 'Bakeries', Name: 'Dry Pasta Dough/Flour Mixes Mfg-Purchased Flour' },
15990
+ { ID: '311911', Category: 'Snack Food Processors and Manufacturers', Name: 'Roasted Nuts & Peanut Butter Manufacturing' },
15991
+ { ID: '311919', Category: 'Snack Food Processors and Manufacturers', Name: 'Other Snack Food Manufacturing' },
15992
+ { ID: '311920', Category: 'Snack Food Processors and Manufacturers', Name: 'Coffee & Tea Manufacturing' },
15993
+ { ID: '311930', Category: 'Syrups, Spices and Condiment Manufacturers', Name: 'Flavoring Syrup & Concentrate Manufacturing' },
15994
+ { ID: '311941', Category: 'Syrups, Spices and Condiment Manufacturers', Name: 'Mayonnaise Dressing & Other Prepared Sauce Mfg' },
15995
+ { ID: '311942', Category: 'Syrups, Spices and Condiment Manufacturers', Name: 'Spice & Extract Manufacturing' },
15996
+ { ID: '311991', Category: 'Syrups, Spices and Condiment Manufacturers', Name: 'Perishable Prepared Food Manufacturing' },
15997
+ { ID: '311999', Category: 'Syrups, Spices and Condiment Manufacturers', Name: 'All Other Miscellaneous Food Manufacturing' },
15998
+ { ID: '312111', Category: 'Beverage Manufacturing', Name: 'Soft Drink Manufacturing' },
15999
+ { ID: '312112', Category: 'Beverage Manufacturing', Name: 'Bottled Water Manufacturing' },
16000
+ { ID: '312120', Category: 'Beverage Manufacturing', Name: 'Breweries' },
16001
+ { ID: '312130', Category: 'Beverage Manufacturing', Name: 'Wineries' },
16002
+ { ID: '312140', Category: 'Beverage Manufacturing', Name: 'Distilleries' },
16003
+ { ID: '424420', Category: 'Wholesalers and Distributors', Name: 'Packaged Frozen Food Merchant Wholesalers' },
16004
+ { ID: '424430', Category: 'Wholesalers and Distributors', Name: 'Dairy Product (Exc Dried Or Canned) Mrchnt Whlsrs' },
16005
+ { ID: '424440', Category: 'Wholesalers and Distributors', Name: 'Poultry & Poultry Product Merchant Wholesalers' },
16006
+ { ID: '424450', Category: 'Wholesalers and Distributors', Name: 'Confectionery Merchant Wholesalers' },
16007
+ { ID: '424460', Category: 'Wholesalers and Distributors', Name: 'Fish & Seafood Merchant Wholesalers' },
16008
+ { ID: '424470', Category: 'Wholesalers and Distributors', Name: 'Meat & Meat Product Merchant Wholesalers' },
16009
+ { ID: '424480', Category: 'Wholesalers and Distributors', Name: 'Fresh Fruit & Vegetable Merchant Wholesalers' },
16010
+ { ID: '424520', Category: 'Wholesalers and Distributors', Name: 'Livestock Merchant Wholesalers' },
16011
+ { ID: '424820', Category: 'Wholesalers and Distributors', Name: 'Wine & Distilled Alcoholic Beverage Mrchnt Whlsrs' },
16012
+ { ID: '445110', Category: 'Food and Beverage Retailers', Name: 'Supermarkets/Other Grocery (Exc Convenience) Strs' },
16013
+ { ID: '445210', Category: 'Food and Beverage Retailers', Name: 'Meat Markets' },
16014
+ { ID: '445220', Category: 'Food and Beverage Retailers', Name: 'Fish & Seafood Markets' },
16015
+ { ID: '445230', Category: 'Food and Beverage Retailers', Name: 'Fruit & Vegetable Markets' },
16016
+ { ID: '445291', Category: 'Food and Beverage Retailers', Name: 'Baked Goods Stores' },
16017
+ { ID: '445292', Category: 'Food and Beverage Retailers', Name: 'Confectionery & Nut Stores' },
16018
+ { ID: '445299', Category: 'Food and Beverage Retailers', Name: 'All Other Specialty Food Stores' },
16019
+ { ID: '445310', Category: 'Food and Beverage Retailers', Name: 'Beer, Wine & Liquor Stores' },
16020
+ { ID: '493120', Category: 'Cold Warehouseing and Storage Facilities', Name: 'Refrigerated Warehousing & Storage' },
16021
+ { ID: '722310', Category: 'Food Services', Name: 'Food Service Contractors' },
16022
+ { ID: '722320', Category: 'Food Services', Name: 'Caterers' },
16023
+ { ID: '722330', Category: 'Food Services', Name: 'Mobile Food Services' },
16024
+ { ID: '722511', Category: 'Restaurants and Eating and Drinking Establishments', Name: 'Full-Service Restaurants' },
16025
+ { ID: '722513', Category: 'Restaurants and Eating and Drinking Establishments', Name: 'Limited-Service Restaurants' },
16026
+ { ID: '722514', Category: 'Restaurants and Eating and Drinking Establishments', Name: 'Cafeterias, Grill Buffets & Buffets' },
16027
+ { ID: '722515', Category: 'Restaurants and Eating and Drinking Establishments', Name: 'Snack & Nonalcoholic Beverage Bars' },
16028
+ { ID: '424410', Category: 'Wholesalers', Name: 'General Line Grocery Merchant Wholesalers' },
16029
+ { ID: '424490', Category: 'Wholesalers', Name: 'Other Grocery & Related Products Merchant Whlsrs' },
16030
+ { ID: '424810', Category: 'Wholesalers', Name: 'Beer & Ale Merchant Wholesalers' },
16031
+ { ID: '424930', Category: 'Wholesalers', Name: 'Nursery Stock/Florists Supls Mrchnt Whlsrs' },
16032
+ { ID: '484220', Category: 'Trucking and Freight', Name: 'Specialized Freight (Exc Used Gds) Trucking Local' },
16033
+ { ID: '484230', Category: 'Trucking and Freight', Name: 'Specialized Freight (Exc Used Gds) Trckng Lng-Dist' },
16034
+ { ID: '722410', Category: 'Eating and Drinking Establishments', Name: 'Drinking Places Alcoholic Beverages' },
16035
+ ].sort((a, b) => {
16036
+ return (a.Category + ' - ' + a.Name).localeCompare(b.Category + ' - ' + b.Name);
16037
+ });
15903
16038
 
15904
16039
  class SimpleMapper {
15905
16040
  reset() {
@@ -16438,5 +16573,5 @@ class HttpBoundaryLoader {
16438
16573
  * Generated bundle index. Do not edit.
16439
16574
  */
16440
16575
 
16441
- export { AddLayer, AddSource, AreaMapperMapper, BackgroundMaskMapper, BackgroundMaskSettings, BaseMapLight, BasemapSelect, BasemapSelectMenu, CensusTractMapper, CroplandDataLayerMapper, CroplandDataLayerSettings, CroplandLegend, DEFAULT_GLYPHS, DrawingMapper, EsriMapper, EsriSettings, HardinessMapper, HardinessSettings, HttpBoundaryLoader, MapAreaSelectComponent, MapComponent, MapSelectionService, MapService, MapStyles, MapboxMapperGroup, NAASMapper, NAASSettings, NaicsMapper, NaicsMapperSettings, NoOpMapper, RemoveLayer, RemoveSource, SaveMap, SelectMode, SimpleMapper, StandardLayersMapper, Styles, VectorTileServerMapper, WatershedMapper, WatershedSettings, discoverLayers, isGeoloader, isMultiPolygon, isNumber2DArray, isNumber3DArray, isPolygon, mapboxLoadImages, mapboxloadImage, pmtilesPixelInfo, sampleTilesForLayers, simpleClone, toMultiPolygon, trySync };
16576
+ export { AddLayer, AddSource, AreaMapperMapper, BackgroundMaskMapper, BackgroundMaskSettings, BaseMapLight, BasemapSelect, BasemapSelectMenu, CensusTractMapper, Codes, CroplandDataLayerMapper, CroplandDataLayerSettings, CroplandLegend, DEFAULT_GLYPHS, DrawingMapper, EsriMapper, EsriSettings, HardinessMapper, HardinessSettings, HttpBoundaryLoader, MapAreaSelectComponent, MapComponent, MapSelectionService, MapService, MapStyles, MapboxMapperGroup, NAASMapper, NAASSettings, NaicsMapper, NaicsMapperSettings, NoOpMapper, RemoveLayer, RemoveSource, SaveMap, SelectMode, SimpleMapper, StandardLayersMapper, Styles, VectorTileServerMapper, WatershedMapper, WatershedSettings, discoverLayers, isGeoloader, isMultiPolygon, isNumber2DArray, isNumber3DArray, isPolygon, mapboxLoadImages, mapboxloadImage, pmtilesPixelInfo, sampleTilesForLayers, simpleClone, toMultiPolygon, trySync };
16442
16577
  //# sourceMappingURL=foodmarketmaker-mapag.mjs.map