#mapcanvas
Explore tagged Tumblr posts
Text
We transform cherished locations into stunning works of art, creating meaningful pieces that tell your unique story. Every location tells a story. At MapCanvas, we believe in capturing these narratives through beautifully crafted map designs that speak to your personal journey. Our designs combine precision cartography with artistic expression, creating pieces that are both meaningful and visually stunning. Each map is thoughtfully rendered to highlight the places that matter most to you.
0 notes
Photo

#handmap ,#mapart ,#mapcanvas,#worldmap #worldmapart
0 notes
Photo

Large Wall Art World Map Canvas Print - Classical Style World Map
0 notes
Link
• Premium Quality Canvas • Archival Ink • No Color Difference compare to Original • Hand-Stretched Wooden Frames • Image / Mirror Wrap • Stunning to View from Every Angle • Durable for Push Pins • Careful Packaging • Worldwide Shipping #canvas #canvasprint #canvasprints #canvasartwork #panelwallart #multipanel #canvas #gift #largewallart #travelmap #illustrationmap #homedecor #homedecoration #walldecor #walldecoration #wallart #wallhanging #home #homeowners #interiordesign #instagood #l4l #f4f #worldmapcanvas #largeworldmap #mapcanvas #panelworldmap #4panel #officedecor #office #home
#canvasprint#canvasprinting#canvasart#canvas prints#world map canvas#world map wall decor#world map wall art#worldmap#world map for office#world map for home#homedecoration#homedecor#home#large wall decor#wall art decor#wallart#wall art#panelwallart#panel wall art
1 note
·
View note
Text
2014_Fortune_1000 - Google Fusion Tables html, body, #googft-mapCanvas { height: 300px; margin: 0; padding: 0; width: 500px; } function initialize() { google.maps.visualRefresh = true; var isMobile = (navigator.userAgent.toLowerCase().indexOf('android') > -1) || (navigator.userAgent.match(/(iPod|iPhone|iPad|BlackBerry|Windows Phone|iemobile)/)); if (isMobile) { var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'initial-scale=1.0, user-scalable=no'); } var mapDiv = document.getElementById('googft-mapCanvas'); mapDiv.style.width = isMobile ? '100%' : '500px'; mapDiv.style.height = isMobile ? '100%' : '300px'; var map = new google.maps.Map(mapDiv, { center: new google.maps.LatLng(29.01294387457082, -89.97060894999998), zoom: 4, mapTypeId: google.maps.MapTypeId.ROADMAP }); layer = new google.maps.FusionTablesLayer({ map: map, heatmap: { enabled: false }, query: { select: "col4", from: "1G_7lSMp_XicWwXrGGFifVP7j1pspCM-nJ6Gdrmff", where: "" }, options: { styleId: 2, templateId: 2 } }); if (isMobile) { var legend = document.getElementById('googft-legend'); var legendOpenButton = document.getElementById('googft-legend-open'); var legendCloseButton = document.getElementById('googft-legend-close'); legend.style.display = 'none'; legendOpenButton.style.display = 'block'; legendCloseButton.style.display = 'block'; legendOpenButton.onclick = function() { legend.style.display = 'block'; legendOpenButton.style.display = 'none'; } legendCloseButton.onclick = function() { legend.style.display = 'none'; legendOpenButton.style.display = 'block'; } } } google.maps.event.addDomListener(window, 'load', initialize);
0 notes
Text
2014_Fortune_1000 - Google Fusion Tables html, body, #googft-mapCanvas { height: 300px; margin: 0; padding: 0; width: 500px; } if (window.location.protocol == "file:") { alert('This script only works when loaded from a web server,' + ' not from a file on your computer.'); } function ftOnLoadClientApi() { } var map; function loadApi() { gapi.client.load('fusiontables', 'v1', initialize); } function initialize() { var isMobile = (navigator.userAgent.toLowerCase().indexOf('android') > -1) || (navigator.userAgent.match(/(iPod|iPhone|iPad|BlackBerry|Windows Phone|iemobile)/)); if (isMobile) { var viewport = document.querySelector("meta[name=viewport]"); viewport.setAttribute('content', 'initial-scale=1.0, user-scalable=no'); } var mapDiv = document.getElementById('googft-mapCanvas'); mapDiv.style.width = isMobile ? '100%' : '500px'; mapDiv.style.height = isMobile ? '100%' : '300px'; map = new google.maps.Map(mapDiv, { center: new google.maps.LatLng(37.52279666723006, -97.88076519999998), zoom: 4, mapTypeId: google.maps.MapTypeId.ROADMAP }); var query = 'select col4 from 1G_7lSMp_XicWwXrGGFifVP7j1pspCM-nJ6Gdrmff limit 1000'; var request = gapi.client.fusiontables.query.sqlGet({ sql: query }); request.execute(function(response) { onDataFetched(response); }); } function onDataFetched(response) { if (response.error) { alert('Unable to fetch data. ' + response.error.message + ' (' + response.error.code + ')'); } else { drawHeatmap(extractLocations(response.rows)); } } function extractLocations(rows) { // Patterns for latitude/longitude in a single field, separated by a space // or comma, with optional north/south/east/west orientation var numberPattern = '([+-]?\\d+(?:\\.\\d*)?)'; var latPattern = numberPattern + '\\s*([NS])?'; var lngPattern = numberPattern + '\\s*([EW])?'; var latLngPattern = latPattern + '(?:\\s+|\\s*,\\s*)' + lngPattern; var northRegexp = /N/i; var eastRegexp = /E/i; var parseRegexp = new RegExp(latLngPattern, 'i'); var locations = []; for (var i = 0; i < rows.length; ++i) { var row = rows[i]; if (row[0]) { var parts = row[0].match(parseRegexp); if (parts) { var latString = parts[1]; var latOrientation = parts[2]; var lngString = parts[3]; var lngOrientation = parts[4]; var lat = parseFloat(latString); var lng = parseFloat(lngString); if (latOrientation) { var latAdjust = northRegexp.test(latOrientation) ? 1 : -1; lat = latAdjust * Math.abs(lat); } if (lngOrientation) { var lngAdjust = eastRegexp.test(lngOrientation) ? 1 : -1; lng = lngAdjust * Math.abs(lng); } var latLng = new google.maps.LatLng(lat, lng); locations.push(latLng); } } } return locations; } function drawHeatmap(locations) { var heatmap = new google.maps.visualization.HeatmapLayer({ dissipating: true, gradient: [ 'rgba(102,255,0,0)', 'rgba(147,255,0,1)', 'rgba(193,255,0,1)', 'rgba(238,255,0,1)', 'rgba(244,227,0,1)', 'rgba(244,227,0,1)', 'rgba(249,198,0,1)', 'rgba(255,170,0,1)', 'rgba(255,113,0,1)', 'rgba(255,57,0,1)', 'rgba(255,0,0,1)' ], opacity: 1, radius: 10, data: locations }); heatmap.setMap(map); } google.maps.event.addDomListener(window, 'load', loadApi);
0 notes
Photo

Earthy Colors Large World Map Canvas • Premium Quality Canvas • Archival Ink • No Color Difference compare to Original • Hand-Stretched Wooden Frames • Image / Mirror Wrap • Stunning to View from Every Angle • Durable for Push Pins • Careful Packaging • Worldwide Shipping #canvas #canvasprint #canvasprints #canvasartwork #panelwallart #multipanel #canvas #gift #largewallart #travelmap #illustrationmap #homedecor #homedecoration #walldecor #walldecoration #wallart #wallhanging #home #homeowners #interiordesign #instagood #l4l #f4f #worldmapcanvas #largeworldmap #mapcanvas #panelworldmap #4panel #officedecor #office #home http://ift.tt/2kxznUP
0 notes
Photo

Earthy Colors Large World Map Canvas • Premium Quality Canvas • Archival Ink • No Color Difference compare to Original • Hand-Stretched Wooden Frames • Image / Mirror Wrap • Stunning to View from Every Angle • Durable for Push Pins • Careful Packaging • Worldwide Shipping #canvas #canvasprint #canvasprints #canvasartwork #panelwallart #multipanel #canvas #gift #largewallart #travelmap #illustrationmap #homedecor #homedecoration #walldecor #walldecoration #wallart #wallhanging #home #homeowners #interiordesign #instagood #l4l #f4f #worldmapcanvas #largeworldmap #mapcanvas #panelworldmap #4panel #officedecor #office #home http://ift.tt/2kxznUP
0 notes
Text
Blue Colors World Map Canvas
Blue Colors Large World Map Canvas • Premium Quality Canvas • Archival Ink • No Color Difference compare to Original • Hand-Stretched Wooden Frames • Image / Mirror Wrap • Stunning to View from Every Angle • Durable for Push Pins • Careful Packaging • Worldwide Shipping #canvas #canvasprint #canvasprints #canvasartwork #panelwallart #multipanel #canvas #gift #largewallart #travelmap #illustrationmap #homedecor #homedecoration #walldecor #walldecoration #wallart #wallhanging #home #homeowners #interiordesign #instagood #l4l #f4f #worldmapcanvas #largeworldmap #mapcanvas #panelworldmap #4panel #officedecor #office #home
A photo posted by Canvas Factory Co @ Etsy (@canvasfactoryco) on Feb 8, 2017 at 12:02pm PST
#Canvas#canvas wall art#world map canvas#large world map#panel wall art#large canvas map#blue world map#push pin world map#canvas world map art#art decor#wall art decor
0 notes