Mapping - Final

Developer
Size
3,755 Kb
Views
26,312

How do I make an mapping - final?

What is a mapping - final? How do you make a mapping - final? This script and codes were developed by Nick Walsh on 06 November 2022, Sunday.

Mapping - Final Previews

Mapping - Final - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Mapping - Final</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ canvas { background: #c9c4bc; display: block;
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <script src='http://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js'></script>
<script src='http://s3-us-west-2.amazonaws.com/s.cdpn.io/68727/topojson.js'></script> <script src="js/index.js"></script>
</body>
</html>

Mapping - Final - Script Codes CSS Codes

canvas { background: #c9c4bc; display: block;
}

Mapping - Final - Script Codes JS Codes

(function() { var cache, canvas, circle, ctx, ctx_cache, draw, height, init, offices, orlando, path, path_cache, projection, width; offices = [ { coord: [-81.379092, 28.542884], r: 50 }, { coord: [-81.379002, 28.540481], r: 33 }, { coord: [-81.369515, 28.538479], r: 17 } ]; height = window.innerHeight; width = window.innerWidth; projection = d3.geo.mercator().center(offices[offices.length - 1].coord).scale(400000).translate([width / 2, height / 2]); canvas = d3.select('body').append('canvas').attr('height', height).attr('width', width); cache = document.createElement('canvas'); cache.height = height; cache.width = width; ctx = canvas.node().getContext('2d'); ctx_cache = cache.getContext('2d'); path = d3.geo.path().projection(projection).context(ctx); path_cache = d3.geo.path().projection(projection).context(ctx_cache); circle = d3.geo.circle(); orlando = null; d3.json('https://s3-us-west-2.amazonaws.com/s.cdpn.io/68727/orlando.json', function(error, data) { orlando = data; init(); return d3.timer(draw); }); init = function() { ctx_cache.beginPath(); path_cache(topojson.feature(orlando, orlando.objects.neighborhoods)); ctx_cache.fillStyle = '#dcd8d2'; ctx_cache.fill(); ctx_cache.lineWidth = '2'; ctx_cache.strokeStyle = '#c9c4bc'; ctx_cache.stroke(); ctx_cache.beginPath(); path_cache(topojson.feature(orlando, orlando.objects.streets)); ctx_cache.lineWidth = '1.5'; ctx_cache.strokeStyle = 'rgba(0, 0, 0, 0.08)'; ctx_cache.stroke(); ctx_cache.beginPath(); path_cache(topojson.feature(orlando, orlando.objects.lanes)); ctx_cache.lineWidth = '6'; ctx_cache.strokeStyle = 'rgba(0, 0, 0, 0.1)'; ctx_cache.stroke(); ctx_cache.lineWidth = '3'; ctx_cache.strokeStyle = 'rgba(255, 255, 255, 0.9)'; return ctx_cache.stroke(); }; draw = function() { var i, len, office; ctx.clearRect(0, 0, width, height); ctx.drawImage(cache, 0, 0); for (i = 0, len = offices.length; i < len; i++) { office = offices[i]; ctx.beginPath(); path(circle.origin(office.coord).angle(0.0005)()); ctx.fillStyle = '#3388a7'; ctx.fill(); office.r -= 0.2; if (office.r <= 0) { office.r = 50; } ctx.lineWidth = office.r; ctx.strokeStyle = "rgba(51, 136, 167, " + (1 - office.r / 50) + ")"; ctx.stroke(); } return false; };
}).call(this);
Mapping - Final - Script Codes
Mapping - Final - Script Codes
Home Page Home
Developer Nick Walsh
Username nickawalsh
Uploaded November 06, 2022
Rating 3
Size 3,755 Kb
Views 26,312
Do you need developer help for Mapping - Final?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Nick Walsh (nickawalsh) Script Codes
Create amazing captions with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!