特性

创始人品牌

创始人或创始家族保留经营控制权或多数股权、体现长期愿景与直接问责的品牌。

151 品牌
创始人品牌

愿景完整

创始人持有意味着果断行动、真实的品牌DNA和雇佣高管无法匹敌的深厚产品知识。直接接触决策者加速交易,并确保原始愿景在增长期间保持纯正。

按位置探索品牌

全球南方品牌位置交互式地图。使用邻近搜索、查看区域集群并探索附近品牌。

Use arrow keys to pan, plus and minus to zoom. Click markers to view brand details.

© OpenStreetMap contributors · © CARTO

website: feature.properties.website || '', tier: feature.properties.contentTier || 'basic' })); this.loading = false; // Update hero brand count const heroCount = document.getElementById('hero-brand-count'); if (heroCount) { const brandWord = this.brands.length === 1 ? '个品牌' : '品牌'; heroCount.innerHTML = this.brands.length + ' ' + brandWord; } console.log('Loaded ' + this.brands.length + ' brands for ' + taxonomyType + ': ' + termSlug); } catch (error) { console.error('Error loading brand data:', error); this.brands = []; this.loading = false; } // Initialize filters from URL parameters const params = new URLSearchParams(window.location.search); if (params.has('search')) this.search = params.get('search'); if (params.has('country')) this.country = params.get('country'); if (params.has('tier')) this.brandTier = params.get('tier'); if (params.has('website')) this.hasWebsite = params.get('website') === 'true'; // Watch for filter changes and update URL (debounced for search) let searchTimeout; this.$watch('search', () => { clearTimeout(searchTimeout); searchTimeout = setTimeout(() => this.updateURL(), 300); }); this.$watch('country', () => this.updateURL()); this.$watch('brandTier', () => this.updateURL()); this.$watch('hasWebsite', () => this.updateURL()); }, updateURL() { const params = new URLSearchParams(); if (this.search) params.set('search', this.search); if (this.country) params.set('country', this.country); if (this.brandTier) params.set('tier', this.brandTier); if (this.hasWebsite) params.set('website', 'true'); const newURL = params.toString() ? window.location.pathname + '?' + params.toString() : window.location.pathname; window.history.pushState({}, '', newURL); }, get activeFilterCount() { let count = 0; if (this.search) count++; if (this.country) count++; if (this.brandTier) count++; if (this.hasWebsite) count++; return count; }, get filteredBrands() { return this.brands.filter(brand => { const matchesSearch = !this.search || brand.name.toLowerCase().includes(this.search.toLowerCase()); const matchesCountry = !this.country || brand.countryCode === this.country; const matchesTier = !this.brandTier || brand.tier === this.brandTier; const matchesWebsite = !this.hasWebsite || brand.website; return matchesSearch && matchesCountry && matchesTier && matchesWebsite; }); }, get sortedBrands() { return [...this.filteredBrands].sort((a, b) => { let aVal, bVal; if (this.sortBy === 'founded') { aVal = a.founded || 0; bVal = b.founded || 0; } else if (this.sortBy === 'tier') { const tierOrder = { 'complete': 3, 'partial': 2, 'basic': 1 }; aVal = tierOrder[a.tier] || 0; bVal = tierOrder[b.tier] || 0; } else if (this.sortBy === 'country') { aVal = a.country || ''; bVal = b.country || ''; } else if (this.sortBy === 'city') { aVal = a.city || ''; bVal = b.city || ''; } else { aVal = a.name || ''; bVal = b.name || ''; } if (this.sortDirection === 'asc') { return aVal > bVal ? 1 : aVal < bVal ? -1 : 0; } else { return aVal < bVal ? 1 : aVal > bVal ? -1 : 0; } }); }, get visibleCount() { return this.filteredBrands.length; }, get uniqueCountries() { return [...new Set(this.brands.map(b => b.countryCode).filter(c => c))].sort(); }, getCountryName(code) { const countryNames = { 'ru': '俄罗斯', 'cn': '中国', 'mn': '蒙古', 'et': '埃塞俄比亚', 'in': '印度' }; return countryNames[code] || code.toUpperCase(); }, clearAllFilters() { this.search = ''; this.country = ''; this.brandTier = ''; this.hasWebsite = false; }, removeFilter(filterName) { if (filterName === 'search') this.search = ''; else if (filterName === 'country') this.country = ''; else if (filterName === 'tier') this.brandTier = ''; else if (filterName === 'website') this.hasWebsite = false; }, sortTable(column) { if (this.sortBy === column) { this.sortDirection = this.sortDirection === 'asc' ? 'desc' : 'asc'; } else { this.sortBy = column; this.sortDirection = (column === 'founded') ? 'desc' : 'asc'; } }, downloadCSV() { const headers = ['Brand', 'City', 'Country', 'Founded', 'Website', 'Tier']; let csv = headers.join(',') + '\n'; this.sortedBrands.forEach(brand => { const rowData = [ this.escapeCSV(brand.name), this.escapeCSV(brand.city || '—'), this.escapeCSV(brand.country || '—'), this.escapeCSV(brand.founded ? String(brand.founded) : '—'), this.escapeCSV(brand.website || '—'), this.escapeCSV(brand.tier) ]; csv += rowData.join(',') + '\n'; }); const blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' }); const link = document.createElement('a'); const url = URL.createObjectURL(blob); const today = new Date().toISOString().split('T')[0]; let filename = 'founder-owned-directory-' + today; if (this.activeFilterCount > 0) { filename += '-filtered'; } filename += '.csv'; link.setAttribute('href', url); link.setAttribute('download', filename); link.style.visibility = 'hidden'; document.body.appendChild(link); link.click(); document.body.removeChild(link); }, escapeCSV(str) { if (!str) return ''; const comma = String.fromCharCode(44); const quote = String.fromCharCode(34); const newline = String.fromCharCode(10); if (str.includes(comma) || str.includes(quote) || str.includes(newline)) { return quote + str.replace(new RegExp(quote, 'g'), quote + quote) + quote; } return str; } }" class="directory-table-container">
品牌 城市 国家 年份 网站级别
End of Directory Listing (Hub-only feature) */}}

相关洞察

创始人交接浪潮
白皮书
🇷🇺 🇨🇳 🇮🇳 🇻🇳 🇮🇩 +13 15 分钟阅读

创始人交接浪潮

在46个互不相干的市场,同一代创始人几乎同时步入企业易主的年龄——而这一切,在任何一份机构数据库或投资分析里,都几乎无迹可寻。

隐于人前
白皮书
🇨🇳 🇷🇺 🇮🇳 🇲🇾 🇲🇳 17 分钟阅读

隐于人前

一家在国家交易所上市的酒庄,一家年营收170亿元人民币的厨电制造商,一家年营收数十亿美元的饮料公司——在专为发现私营企业而建的平台上,全都查无可用信息。

阅读揭示了什么
白皮书
俄罗斯时尚:无人留意的真空
行业聚焦
🇷🇺 9 分钟阅读

俄罗斯时尚:无人留意的真空

2022年,五百多个西方品牌逃离俄罗斯,腾出黄金店面;被此前三场危机反复锤炼的本土创始人品牌趁势占据这片真空——而西方早已不再注视这个市场。

百万订阅,零广告支出
创业地形
🇨🇳 🇮🇳 🇻🇳 🇦🇪 10 分钟阅读

百万订阅,零广告支出

一家创始人持有的咨询公司,将亚洲商业洞察免费发布长达二十五年,且未在第三方广告上花一分钱。同样的形态,没有任何对手复制出来——那份档案再也无人能够重来。

俄罗斯葡萄酒:那个被忽视的分销层
行业聚焦
🇷🇺 11 分钟阅读

俄罗斯葡萄酒:那个被忽视的分销层

2022年,俄罗斯最大葡萄酒进口商停业整整一天。随后重启,聘来帝亚吉欧高管,开始构建出口战略。这层无人关注的分销网络,正在重新书写自己的故事。

泰国美妆健康:机构资本从未看见的危机世代
行业聚焦
🇹🇭 10 分钟阅读

泰国美妆健康:机构资本从未看见的危机世代

乐敦筛查了逾500家泰国企业才签下一家。这场搜寻揭示的,是整整一代危机中诞生的品牌正同时抵达机构化就绪的临界点——而西方平台从未发现它们。

美国例外:信德商人如何在马尼拉建立无形帝国
十字路口
🇵🇭 🇸🇬 🇮🇳 12 分钟阅读

美国例外:信德商人如何在马尼拉建立无形帝国

九位信德商人于1951年联手在马尼拉创立菲律宾最古老的印度商会。一纸零售禁令之后,他们的后代并未离去,而是深度转型:一支建起快乐蜂在菲律宾最大的特许经营集团,另一支将Jockey许可证从马尼拉带至班加罗尔,锻造出一家市值约40亿美元的印度上市企业。

信德离散族群:百年流亡与无形商业帝国
十字路口
🇮🇳 🇦🇪 🇳🇬 🇸🇬 🇲🇾 +2 11 分钟阅读

信德离散族群:百年流亡与无形商业帝国

他们在加纳建起该国最大零售连锁,在英国打造了最畅销维生素品牌,还让一瓶威士忌的销量超过了尊尼获加。几乎无人知道他们是信德人。

俄罗斯珠宝与制表:世界从未发现的那些创始人
行业聚焦
密斯特拉尔的棋局:意外垄断
创业地形
🇷🇺 8 分钟阅读

密斯特拉尔的棋局:意外垄断

二〇一四年卢布崩溃,俄罗斯唯一的阿布哈兹葡萄酒进口商从行业中游一跃成为全国第一——不靠任何战略,靠的是一场无人预见的货币危机。

俄罗斯葡萄酒:闭门之后的革命
行业聚焦
🇷🇺 14 分钟阅读

俄罗斯葡萄酒:闭门之后的革命

一瓶酒在拍卖会上拍出75万卢布。葡萄品种:克拉斯诺斯托普·佐洛托夫斯基。本土品种正击败勃艮第与巴罗洛,俄罗斯葡萄酒革命世界看不见,却不可忽视。

收购巨人:不合并的艺术
创业地形
🇷🇺 10 分钟阅读

收购巨人:不合并的艺术

一位精品酿酒师以数千万欧元收购了产量达60倍于己的苏联工业巨头酒庄——拥有2700公顷葡萄园、1150万瓶年产能和地下石灰岩酒窖等庞大资产。他没有合并品牌追求规模效应,而是构建了彻底分离的平行品牌架构。真正的成功秘诀在于清醒地认识到什么绝对不该合并。

儿子靠实力赢得母亲一手创立的事业
传承故事
🇲🇾 7 min

儿子靠实力赢得母亲一手创立的事业

卢妙卿用47年苦斗建起马来西亚顶级美发品牌A Cut Above,从吉隆坡一间40平方米小店扩展到九家沙龙的版图。2024年正式交棒——但儿子马库斯早已通过与Aveda合作开发Restyle+生态沙龙、在巴生谷开设三家门店证明:他能拓展版图,而非仅仅守成。

蒙古天然美妆产业
行业聚焦
🇲🇳 15 分钟阅读

蒙古天然美妆产业

从牦牛奶和零下40°C极端气候植物成分,蒙古正在打造欧盟认证天然美妆品牌——数百年游牧传统遇上现代有机认证,一个世界尚未发现的产业。