{"id":24433,"date":"2026-05-12T12:53:34","date_gmt":"2026-05-12T12:53:34","guid":{"rendered":"https:\/\/geziyoo.co\/blog\/?p=24433"},"modified":"2026-05-12T13:00:28","modified_gmt":"2026-05-12T13:00:28","slug":"kamp-ve-seyahat-masraf-bolusturucu","status":"publish","type":"post","link":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/","title":{"rendered":"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama)"},"content":{"rendered":"\n<style>\n.geziyoo-app { width: 100%; margin: 20px auto; font-family: Arial, sans-serif; color: #333; }\n.geziyoo-header { text-align: center; margin-bottom: 30px; }\n.geziyoo-header h3 { color: #2e7d32; font-size: 24px; margin-bottom: 10px; }\n.geziyoo-grid { display: flex; flex-wrap: wrap; gap: 20px; }\n.geziyoo-panel { flex: 1; min-width: 300px; background: #fdfdfd; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 4px solid #2e7d32; }\n.geziyoo-panel h4 { margin-top: 0; border-bottom: 2px solid #e8f5e9; padding-bottom: 10px; color: #555; }\n.g-input-group { display: flex; gap: 10px; margin-bottom: 15px; }\n\n\/* Teman\u0131n renk ayarlar\u0131n\u0131 ezmek i\u00e7in kesin (!important) kurallar *\/\n.g-input-group input, .g-input-group select { \n    padding: 10px; border: 1px solid #ccc; border-radius: 6px; width: 100%; box-sizing: border-box; \n    color: #111 !important; background-color: #fff !important; min-height: 42px; font-size: 15px; \n}\n.g-input-group select option { color: #111 !important; background-color: #fff !important; }\n\n.g-btn { background-color: #2e7d32; color: white; border: none; padding: 10px 15px; border-radius: 6px; cursor: pointer; font-weight: bold; transition: 0.3s; white-space: nowrap; }\n.g-btn:hover { background-color: #1b5e20; }\n.g-btn-danger { background-color: #d32f2f; width: 100%; margin-top:10px; }\n.g-btn-danger:hover { background-color: #b71c1c; }\n.g-list { list-style: none; padding: 0; margin: 0 0 20px 0; }\n.g-list li { background: #f1f1f1; margin-bottom: 8px; padding: 10px; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; color: #111 !important; }\n.g-remove-btn { background: none; border: none; color: #d32f2f; cursor: pointer; font-weight: bold; font-size: 16px; padding: 0 5px; }\n.g-result-box { background: #e8f5e9; padding: 20px; border-radius: 8px; margin-top: 20px; }\n.g-transfer-item { font-size: 16px; padding: 8px 0; border-bottom: 1px dashed #ccc; color: #111; }\n.g-transfer-item:last-child { border-bottom: none; }\n<\/style>\n\n<div class=\"geziyoo-app\" id=\"geziyooApp\">\n    <div class=\"geziyoo-header\">\n        <h3>\u26fa Kamp &#038; Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc<\/h3>\n        <p>Ekibi ve harcamalar\u0131 ekleyin, kimin kime ne kadar borcu oldu\u011funu an\u0131nda g\u00f6r\u00fcn.<\/p>\n    <\/div>\n    <div class=\"geziyoo-grid\">\n        <div class=\"geziyoo-panel\">\n            <h4>1. Ekip \u00dcyeleri<\/h4>\n            <div class=\"g-input-group\">\n                <input type=\"text\" id=\"gPersonName\" placeholder=\"Ki\u015fi Ad\u0131 (\u00d6rn: Ugu)\">\n                <button type=\"button\" class=\"g-btn\" id=\"btnAddPerson\">Ekle<\/button>\n            <\/div>\n            <ul class=\"g-list\" id=\"gPersonList\"><\/ul>\n        <\/div>\n        <div class=\"geziyoo-panel\">\n            <h4>2. Harcamalar<\/h4>\n            <div class=\"g-input-group\">\n                <input type=\"text\" id=\"gExpDesc\" placeholder=\"Ne al\u0131nd\u0131? (Market vb.)\">\n            <\/div>\n            <div class=\"g-input-group\">\n                <input type=\"number\" id=\"gExpAmount\" placeholder=\"Tutar (\u20ba)\" min=\"0\">\n                <select id=\"gExpPayer\">\n                    <option value=\"\">\u00d6nce Ki\u015fi Ekleyin&#8230;<\/option>\n                <\/select>\n                <button type=\"button\" class=\"g-btn\" id=\"btnAddExpense\">Ekle<\/button>\n            <\/div>\n            <ul class=\"g-list\" id=\"gExpenseList\"><\/ul>\n        <\/div>\n    <\/div>\n    <div class=\"g-result-box\">\n        <h4>\ud83d\udcb0 Hesap \u00d6zeti<\/h4>\n        <div id=\"gSummaryText\" style=\"margin-bottom:15px; font-weight:bold; color:#2e7d32;\"><\/div>\n        <div id=\"gSettlementList\">Toplu hesaplama i\u00e7in ki\u015fi ve harcama ekleyin.<\/div>\n        <button type=\"button\" class=\"g-btn g-btn-danger\" id=\"btnClearData\">\ud83d\uddd1\ufe0f T\u00fcm Verileri Temizle<\/button>\n    <\/div>\n<\/div>\n\n<script>\n(function() {\n    function baslatGeziyooApp() {\n        var persons = JSON.parse(localStorage.getItem('gz_persons')) || [];\n        var expenses = JSON.parse(localStorage.getItem('gz_expenses')) || [];\n\n        var pList = document.getElementById('gPersonList');\n        var eList = document.getElementById('gExpenseList');\n        var pSelect = document.getElementById('gExpPayer');\n\n        function saveData() {\n            localStorage.setItem('gz_persons', JSON.stringify(persons));\n            localStorage.setItem('gz_expenses', JSON.stringify(expenses));\n        }\n\n        function render() {\n            \/\/ Ki\u015fileri \u00c7iz\n            pList.innerHTML = '';\n            persons.forEach(function(p) {\n                pList.innerHTML += '<li>' + p + ' <button type=\"button\" class=\"g-remove-btn\" data-type=\"person\" data-val=\"' + p + '\">\u2716<\/button><\/li>';\n            });\n\n            \/\/ Harcamalar\u0131 \u00c7iz\n            eList.innerHTML = '';\n            expenses.forEach(function(e) {\n                eList.innerHTML += '<li><span><b>' + e.desc + '<\/b> (' + e.payer + ')<\/span> <span>' + e.amount + ' \u20ba <button type=\"button\" class=\"g-remove-btn\" data-type=\"expense\" data-val=\"' + e.id + '\">\u2716<\/button><\/span><\/li>';\n            });\n\n            \/\/ Se\u00e7im Kutusunu G\u00fcncelle\n            pSelect.innerHTML = '';\n            if(persons.length === 0) {\n                pSelect.innerHTML = '<option value=\"\">\u00d6nce Ki\u015fi Ekleyin...<\/option>';\n            } else {\n                pSelect.innerHTML = '<option value=\"\">\u00d6deyen Ki\u015fiyi Se\u00e7in...<\/option>';\n                persons.forEach(function(p) {\n                    pSelect.innerHTML += '<option value=\"' + p + '\">' + p + '<\/option>';\n                });\n            }\n\n            hesapla();\n        }\n\n        function hesapla() {\n            if (persons.length === 0) {\n                document.getElementById('gSettlementList').innerHTML = \"Toplu hesaplama i\u00e7in ki\u015fi ve harcama ekleyin.\";\n                document.getElementById('gSummaryText').innerText = \"\";\n                return;\n            }\n\n            var totalAmount = 0;\n            var balances = {};\n            persons.forEach(function(p) { balances[p] = 0; });\n\n            expenses.forEach(function(e) {\n                totalAmount += e.amount;\n                if (balances[e.payer] !== undefined) {\n                    balances[e.payer] += e.amount;\n                }\n            });\n\n            var perPerson = totalAmount \/ persons.length;\n            document.getElementById('gSummaryText').innerText = \"Toplam Harcama: \" + totalAmount.toFixed(2) + \" \u20ba | Ki\u015fi Ba\u015f\u0131: \" + perPerson.toFixed(2) + \" \u20ba\";\n\n            var debtors = [];\n            var creditors = [];\n\n            for (var person in balances) {\n                if (balances.hasOwnProperty(person)) {\n                    var diff = balances[person] - perPerson;\n                    if (diff < -0.01) debtors.push({ name: person, amount: Math.abs(diff) });\n                    else if (diff > 0.01) creditors.push({ name: person, amount: diff });\n                }\n            }\n\n            var settlementHTML = \"\";\n            var i = 0, j = 0;\n\n            while (i < debtors.length &#038;&#038; j < creditors.length) {\n                var debtor = debtors[i];\n                var creditor = creditors[j];\n                var transfer = Math.min(debtor.amount, creditor.amount);\n                settlementHTML += '<div class=\"g-transfer-item\">\ud83d\udcb8 <b>' + debtor.name + '<\/b>, <b>' + creditor.name + '<\/b>\\'a <b>' + transfer.toFixed(2) + ' \u20ba<\/b> \u00f6demeli.<\/div>';\n                debtor.amount -= transfer;\n                creditor.amount -= transfer;\n                if (debtor.amount < 0.01) i++;\n                if (creditor.amount < 0.01) j++;\n            }\n\n            if (settlementHTML === \"\") {\n                settlementHTML = \"<div class='g-transfer-item'>Herkesin hesab\u0131 denk! \u00d6denecek bor\u00e7 yok. \ud83c\udf89<\/div>\";\n            }\n            document.getElementById('gSettlementList').innerHTML = settlementHTML;\n        }\n\n        \/\/ --- Olay Dinleyicileri (Event Listeners) ---\n\n        \/\/ Ki\u015fi Ekleme\n        document.getElementById('btnAddPerson').addEventListener('click', function(e) {\n            e.preventDefault();\n            var nameInput = document.getElementById('gPersonName');\n            var name = nameInput.value.trim();\n            if (name !== \"\" && persons.indexOf(name) === -1) {\n                persons.push(name);\n                nameInput.value = '';\n                saveData(); render();\n            } else if (name !== \"\") {\n                alert(\"Bu isim zaten ekli!\");\n            }\n        });\n\n        \/\/ Harcama Ekleme\n        document.getElementById('btnAddExpense').addEventListener('click', function(e) {\n            e.preventDefault();\n            var desc = document.getElementById('gExpDesc').value.trim();\n            var amount = parseFloat(document.getElementById('gExpAmount').value);\n            var payer = document.getElementById('gExpPayer').value;\n\n            if (desc !== \"\" && amount > 0 && payer !== \"\") {\n                expenses.push({ id: Date.now(), desc: desc, amount: amount, payer: payer });\n                document.getElementById('gExpDesc').value = '';\n                document.getElementById('gExpAmount').value = '';\n                saveData(); render();\n            } else {\n                alert(\"L\u00fctfen harcama detaylar\u0131n\u0131 eksiksiz girin ve \u00f6deyen ki\u015fiyi se\u00e7in.\");\n            }\n        });\n\n        \/\/ Silme \u0130\u015flemleri (Event Delegation)\n        document.getElementById('geziyooApp').addEventListener('click', function(e) {\n            if (e.target && e.target.classList.contains('g-remove-btn')) {\n                var type = e.target.getAttribute('data-type');\n                var val = e.target.getAttribute('data-val');\n\n                if (type === 'person') {\n                    persons = persons.filter(function(p) { return p !== val; });\n                    expenses = expenses.filter(function(exp) { return exp.payer !== val; });\n                } else if (type === 'expense') {\n                    val = parseInt(val, 10);\n                    expenses = expenses.filter(function(exp) { return exp.id !== val; });\n                }\n                saveData(); render();\n            }\n        });\n\n        \/\/ T\u00fcm\u00fcn\u00fc Temizle\n        document.getElementById('btnClearData').addEventListener('click', function(e) {\n            e.preventDefault();\n            if (confirm(\"T\u00fcm ki\u015fileri ve harcamalar\u0131 silmek istedi\u011finize emin misiniz?\")) {\n                persons = []; expenses = [];\n                saveData(); render();\n            }\n        });\n\n        render();\n    }\n\n    \/\/ Kodun sayfa tamamen y\u00fcklendikten sonra \u00e7al\u0131\u015fmas\u0131n\u0131 garantile\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', baslatGeziyooApp);\n    } else {\n        baslatGeziyooApp();\n    }\n})();\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>\u26fa Kamp &#038; Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc Ekibi ve harcamalar\u0131 ekleyin, kimin kime ne kadar borcu oldu\u011funu an\u0131nda g\u00f6r\u00fcn. 1. Ekip \u00dcyeleri Ekle 2. Harcamalar \u00d6nce Ki\u015fi Ekleyin&#8230; Ekle \ud83d\udcb0 Hesap \u00d6zeti Toplu hesaplama i\u00e7in ki\u015fi ve harcama ekleyin. \ud83d\uddd1\ufe0f T\u00fcm Verileri Temizle<\/p>\n","protected":false},"author":1,"featured_media":19851,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[590],"class_list":["post-24433","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-gezirehberi","tag-araclar"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama) | Geziyoo<\/title>\n<meta name=\"description\" content=\"Arkada\u015flar merhaba! Kalabal\u0131k gruplarla kampa veya yola \u00e7\u0131kt\u0131\u011f\u0131m\u0131zda, d\u00f6n\u00fc\u015f yolunda &#039;Sen \u015fu kadar market al\u0131\u015fveri\u015fi yapt\u0131n, ben benzin ald\u0131m, kim kime ne verecek?&#039;\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama) | Geziyoo\" \/>\n<meta property=\"og:description\" content=\"Arkada\u015flar merhaba! Kalabal\u0131k gruplarla kampa veya yola \u00e7\u0131kt\u0131\u011f\u0131m\u0131zda, d\u00f6n\u00fc\u015f yolunda &#039;Sen \u015fu kadar market al\u0131\u015fveri\u015fi yapt\u0131n, ben benzin ald\u0131m, kim kime ne verecek?&#039;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\" \/>\n<meta property=\"og:site_name\" content=\"Geziyoo.co\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Geziyooco\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/geziyoo.co\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-12T12:53:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-12T13:00:28+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Geziyoo\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/geziyoo\" \/>\n<meta name=\"twitter:site\" content=\"@geziyoo\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Geziyoo\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\"},\"author\":{\"name\":\"Geziyoo\",\"@id\":\"https:\/\/geziyoo.co\/blog\/#\/schema\/person\/032acb2436540ed14784e7d978aef0e4\"},\"headline\":\"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama)\",\"datePublished\":\"2026-05-12T12:53:34+00:00\",\"dateModified\":\"2026-05-12T13:00:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\"},\"wordCount\":62,\"publisher\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg\",\"keywords\":[\"Ara\u00e7lar\"],\"articleSection\":[\"Gezi Rehberi\"],\"inLanguage\":\"tr\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\",\"url\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\",\"name\":\"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama) | Geziyoo\",\"isPartOf\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg\",\"datePublished\":\"2026-05-12T12:53:34+00:00\",\"dateModified\":\"2026-05-12T13:00:28+00:00\",\"description\":\"Arkada\u015flar merhaba! Kalabal\u0131k gruplarla kampa veya yola \u00e7\u0131kt\u0131\u011f\u0131m\u0131zda, d\u00f6n\u00fc\u015f yolunda 'Sen \u015fu kadar market al\u0131\u015fveri\u015fi yapt\u0131n, ben benzin ald\u0131m, kim kime ne verecek?'\",\"breadcrumb\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage\",\"url\":\"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg\",\"contentUrl\":\"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg\",\"width\":800,\"height\":450},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ana sayfa\",\"item\":\"https:\/\/geziyoo.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/geziyoo.co\/blog\/#website\",\"url\":\"https:\/\/geziyoo.co\/blog\/\",\"name\":\"Geziyoo Blog\",\"description\":\"GeziYoo Blog&#039;da T\u00fcrkiye&#039;nin en iyi kamp alanlar\u0131ndan bungalov tatillerine, karavan ipu\u00e7lar\u0131ndan gezi rehberlerine kadar her t\u00fcrl\u00fc do\u011fa deneyimini ke\u015ffedin.\",\"publisher\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/geziyoo.co\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/geziyoo.co\/blog\/#organization\",\"name\":\"Geziyoo.co\",\"url\":\"https:\/\/geziyoo.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/geziyoo.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2025\/01\/Paragraf-metniniz-3.png\",\"contentUrl\":\"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2025\/01\/Paragraf-metniniz-3.png\",\"width\":270,\"height\":50,\"caption\":\"Geziyoo.co\"},\"image\":{\"@id\":\"https:\/\/geziyoo.co\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Geziyooco\",\"https:\/\/x.com\/geziyoo\",\"https:\/\/tr.pinterest.com\/geziyooco\/\",\"https:\/\/www.youtube.com\/@geziyoo\",\"https:\/\/www.instagram.com\/geziyoo.co\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/geziyoo.co\/blog\/#\/schema\/person\/032acb2436540ed14784e7d978aef0e4\",\"name\":\"Geziyoo\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/geziyoo.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ae212a4514471fdb8cab6e5af4f3c99b940a2d0a16713ea0392c8d7c8a64f30a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ae212a4514471fdb8cab6e5af4f3c99b940a2d0a16713ea0392c8d7c8a64f30a?s=96&d=mm&r=g\",\"caption\":\"Geziyoo\"},\"description\":\"Do\u011fa ile i\u00e7 i\u00e7e olabilece\u011finiz yerler,do\u011fa aktivite alanlar\u0131,kamp alanlar\u0131,bungalov oteller,Tiny House Oteller, Galampingler ve da\u011f evlerinin herkes i\u00e7in ula\u015f\u0131labilir olmas\u0131n\u0131 sa\u011flamak amac\u0131yla Geziyoo\u2019ya 2019 y\u0131l\u0131nda ba\u015flad\u0131k.Do\u011fal Tatil konseptini uygulayan en geni\u015f kapsaml\u0131 sitedir.\",\"sameAs\":[\"https:\/\/geziyoo.co\/\",\"https:\/\/www.facebook.com\/geziyoo.co\",\"https:\/\/www.instagram.com\/geziyoo.co\/\",\"https:\/\/tr.pinterest.com\/geziyooco\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/geziyoo\",\"https:\/\/www.youtube.com\/channel\/UCdiSMa6pe17KEY7DP1Ug4ag\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama) | Geziyoo","description":"Arkada\u015flar merhaba! Kalabal\u0131k gruplarla kampa veya yola \u00e7\u0131kt\u0131\u011f\u0131m\u0131zda, d\u00f6n\u00fc\u015f yolunda 'Sen \u015fu kadar market al\u0131\u015fveri\u015fi yapt\u0131n, ben benzin ald\u0131m, kim kime ne verecek?'","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/","og_locale":"tr_TR","og_type":"article","og_title":"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama) | Geziyoo","og_description":"Arkada\u015flar merhaba! Kalabal\u0131k gruplarla kampa veya yola \u00e7\u0131kt\u0131\u011f\u0131m\u0131zda, d\u00f6n\u00fc\u015f yolunda 'Sen \u015fu kadar market al\u0131\u015fveri\u015fi yapt\u0131n, ben benzin ald\u0131m, kim kime ne verecek?'","og_url":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/","og_site_name":"Geziyoo.co","article_publisher":"https:\/\/www.facebook.com\/Geziyooco","article_author":"https:\/\/www.facebook.com\/geziyoo.co","article_published_time":"2026-05-12T12:53:34+00:00","article_modified_time":"2026-05-12T13:00:28+00:00","og_image":[{"width":800,"height":450,"url":"http:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg","type":"image\/jpeg"}],"author":"Geziyoo","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/geziyoo","twitter_site":"@geziyoo","twitter_misc":{"Yazan:":"Geziyoo","Tahmini okuma s\u00fcresi":"1 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#article","isPartOf":{"@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/"},"author":{"name":"Geziyoo","@id":"https:\/\/geziyoo.co\/blog\/#\/schema\/person\/032acb2436540ed14784e7d978aef0e4"},"headline":"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama)","datePublished":"2026-05-12T12:53:34+00:00","dateModified":"2026-05-12T13:00:28+00:00","mainEntityOfPage":{"@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/"},"wordCount":62,"publisher":{"@id":"https:\/\/geziyoo.co\/blog\/#organization"},"image":{"@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage"},"thumbnailUrl":"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg","keywords":["Ara\u00e7lar"],"articleSection":["Gezi Rehberi"],"inLanguage":"tr"},{"@type":"WebPage","@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/","url":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/","name":"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama) | Geziyoo","isPartOf":{"@id":"https:\/\/geziyoo.co\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage"},"image":{"@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage"},"thumbnailUrl":"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg","datePublished":"2026-05-12T12:53:34+00:00","dateModified":"2026-05-12T13:00:28+00:00","description":"Arkada\u015flar merhaba! Kalabal\u0131k gruplarla kampa veya yola \u00e7\u0131kt\u0131\u011f\u0131m\u0131zda, d\u00f6n\u00fc\u015f yolunda 'Sen \u015fu kadar market al\u0131\u015fveri\u015fi yapt\u0131n, ben benzin ald\u0131m, kim kime ne verecek?'","breadcrumb":{"@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#primaryimage","url":"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg","contentUrl":"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2024\/12\/Ayder-Camping-4.jpg","width":800,"height":450},{"@type":"BreadcrumbList","@id":"https:\/\/geziyoo.co\/blog\/kamp-ve-seyahat-masraf-bolusturucu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ana sayfa","item":"https:\/\/geziyoo.co\/blog\/"},{"@type":"ListItem","position":2,"name":"Kamp ve Seyahat Masraf B\u00f6l\u00fc\u015ft\u00fcr\u00fcc\u00fc (Grup B\u00fct\u00e7e Hesaplama)"}]},{"@type":"WebSite","@id":"https:\/\/geziyoo.co\/blog\/#website","url":"https:\/\/geziyoo.co\/blog\/","name":"Geziyoo Blog","description":"GeziYoo Blog&#039;da T\u00fcrkiye&#039;nin en iyi kamp alanlar\u0131ndan bungalov tatillerine, karavan ipu\u00e7lar\u0131ndan gezi rehberlerine kadar her t\u00fcrl\u00fc do\u011fa deneyimini ke\u015ffedin.","publisher":{"@id":"https:\/\/geziyoo.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/geziyoo.co\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https:\/\/geziyoo.co\/blog\/#organization","name":"Geziyoo.co","url":"https:\/\/geziyoo.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/geziyoo.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2025\/01\/Paragraf-metniniz-3.png","contentUrl":"https:\/\/geziyoo.co\/blog\/wp-content\/uploads\/2025\/01\/Paragraf-metniniz-3.png","width":270,"height":50,"caption":"Geziyoo.co"},"image":{"@id":"https:\/\/geziyoo.co\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Geziyooco","https:\/\/x.com\/geziyoo","https:\/\/tr.pinterest.com\/geziyooco\/","https:\/\/www.youtube.com\/@geziyoo","https:\/\/www.instagram.com\/geziyoo.co\/"]},{"@type":"Person","@id":"https:\/\/geziyoo.co\/blog\/#\/schema\/person\/032acb2436540ed14784e7d978aef0e4","name":"Geziyoo","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/geziyoo.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ae212a4514471fdb8cab6e5af4f3c99b940a2d0a16713ea0392c8d7c8a64f30a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ae212a4514471fdb8cab6e5af4f3c99b940a2d0a16713ea0392c8d7c8a64f30a?s=96&d=mm&r=g","caption":"Geziyoo"},"description":"Do\u011fa ile i\u00e7 i\u00e7e olabilece\u011finiz yerler,do\u011fa aktivite alanlar\u0131,kamp alanlar\u0131,bungalov oteller,Tiny House Oteller, Galampingler ve da\u011f evlerinin herkes i\u00e7in ula\u015f\u0131labilir olmas\u0131n\u0131 sa\u011flamak amac\u0131yla Geziyoo\u2019ya 2019 y\u0131l\u0131nda ba\u015flad\u0131k.Do\u011fal Tatil konseptini uygulayan en geni\u015f kapsaml\u0131 sitedir.","sameAs":["https:\/\/geziyoo.co\/","https:\/\/www.facebook.com\/geziyoo.co","https:\/\/www.instagram.com\/geziyoo.co\/","https:\/\/tr.pinterest.com\/geziyooco\/","https:\/\/x.com\/https:\/\/twitter.com\/geziyoo","https:\/\/www.youtube.com\/channel\/UCdiSMa6pe17KEY7DP1Ug4ag"]}]}},"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/posts\/24433","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/comments?post=24433"}],"version-history":[{"count":7,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/posts\/24433\/revisions"}],"predecessor-version":[{"id":24440,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/posts\/24433\/revisions\/24440"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/media\/19851"}],"wp:attachment":[{"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/media?parent=24433"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/categories?post=24433"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/geziyoo.co\/blog\/wp-json\/wp\/v2\/tags?post=24433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}