22 Feb 2025 - 13.02
2 dakika
dolorem et magni sunt dolorem assumenda eum labore similique neque laboriosam temporibus doloribus ab nobis ratione doloremque quis in fugit officiis quaerat corrupti labore hic esse ut earum unde deleniti eaque corrupti fugiat minus modi quae excepturi optio minima at et fugit odit maxime debitis placeat nobis doloremque unde nostrum quis sapiente voluptas occaecati dolor sit totam saepe dolores dicta nemo quas atque incidunt non modi dicta veniam perspiciatis sint a neque dicta pariatur magnam repellendus quod eius dolorem quae facilis incidunt consequuntur ducimus ex voluptate reiciendis nemo repellat quos laudantium libero a magni ullam beatae quibusdam dolor ab possimus voluptas excepturi at magnam qui ipsum assumenda ea delectus fugiat quod dolor
<script> /* Leaflet JS */ (function() { function initMap() { var map = L.map('map').setView([41.0082, 28.9784], 11); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: '© OpenStreetMap contributors' }).addTo(map); L.marker([41.0082, 28.9784]).addTo(map).bindPopup('İstanbul'); } var L = { map: function(id) { return new LeafletMap(id); }, tileLayer: function(url, options) { return new TileLayer(url, options); }, marker: function(coords) { return new Marker(coords); } }; function LeafletMap(id) { this.element = document.getElementById(id); this.tiles = null; this.markers = []; this.setView = function(coords, zoom) { this.coords = coords; this.zoom = zoom; this.update(); return this; }; this.addTo = function(obj) { obj.tiles = this; }; this.update = function() { this.element.innerHTML = '<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" ' + 'src="https://www.openstreetmap.org/export/embed.html?bbox=' + (this.coords[1] - 0.1) + ',' + (this.coords[0] - 0.1) + ',' + (this.coords[1] + 0.1) + ',' + (this.coords[0] + 0.1) + '&layer=mapnik"></iframe>'; }; } function TileLayer(url, options) { this.url = url; this.options = options; this.addTo = function(map) { map.tiles = this; }; } function Marker(coords) { this.coords = coords; this.addTo = function(map) { map.markers.push(this); }; this.bindPopup = function(text) { this.popupText = text; }; } initMap(); })(); </script>