<!DOCTYPE html>
<html>
  <head>
    <link data-require="leaflet@0.7.3" data-semver="0.7.3" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.css" />
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div id="map"></div>
    <script data-require="leaflet@0.7.3" data-semver="0.7.3" src="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script>
    <script data-require="d3@3.5.3" data-semver="3.5.3" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js"></script>
    <script src="L.D3SvgOverlay.min.js"></script>
    <script src="script.js"></script>
  </body>
</html>
var tile3 = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var attrib = '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors';

var baseLayer = L.tileLayer(tile3, {
    maxNativeZoom: 19,
    attribution: attrib
});

var map = L.map('map',{
    minZoom: 2
})
    .addLayer(baseLayer)
    .setView([-16.238409119210182,-48.372802734375], 8);
    
map.setMaxBounds(L.latLngBounds(
    L.latLng(85, -180),    
    L.latLng(-85, 180)    
));


var points = [];
var routeLayer = L.d3SvgOverlay(function(sel, proj){

    var lineFunction = d3.svg.line()
        .x(function(d) { return proj.latLngToLayerPoint(d).x; })
        .y(function(d) { return proj.latLngToLayerPoint(d).y; })
        .interpolate("basis");
        
    var linePath = sel.selectAll('.line')
        .data([points])
        .enter()
        .append("path")
        .attr("d", lineFunction(points));

    
    transition();

    function transition(){
        linePath.transition()
            .duration(7500)
            .attrTween("stroke-dasharray", tweenDash);
    }
    
    function tweenDash() {
        return function(t) {
            var l = linePath.node().getTotalLength(); 

            interpolate = d3.interpolateString("0," + l, l + "," + l);
            return interpolate(t);
        }
    }
    
}, {
    zoomDraw: false
});
    
baseLayer.on('load', function(){
    d3.json("coords.json", function(data){
        var coords = data.features[0].geometry.coordinates;
        
        L.marker(coords[0]).addTo(map);
        L.marker(coords[coords.length - 1]).addTo(map);
        
        points = coords.map(function(d){
            d.latLng = [d[0], d[1]];
            return d;
        });
        routeLayer.addTo(map);
    });
});
html,
body {
    height: 100%;
    width: 100%;
}
body {
    margin: 0;
}
#map{
    position:absolute;
    z-index:10;
    width:100%;
    height:100%;
    top:0; left:0;
}
path {
    opacity: .9;
    fill: none;
    stroke: #444;
    stroke-width: 3px;
    stroke-linejoin: round;
}

{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"id":0},"geometry":{"type":"LineString","coordinates":[[-16.686965,-49.264658999999995],[-16.686906,-49.264613999999995],[-16.686822,-49.264575],[-16.686719,-49.264564],[-16.686237,-49.264713],[-16.686163999999998,-49.264724],[-16.686096,-49.264705],[-16.686037,-49.26464],[-16.685997999999998,-49.264553],[-16.685865,-49.264117999999996],[-16.685813,-49.264072],[-16.685695,-49.264075999999996],[-16.685007,-49.264305],[-16.684707,-49.263298],[-16.684290999999998,-49.261859],[-16.68404,-49.260963],[-16.683927,-49.260639],[-16.683839,-49.260475],[-16.683730999999998,-49.260321999999995],[-16.683550999999998,-49.260169],[-16.683206,-49.260009],[-16.683021,-49.25996],[-16.682872,-49.259941],[-16.682624,-49.259952],[-16.682363,-49.260017],[-16.681805999999998,-49.260208],[-16.681402,-49.258899],[-16.681210999999998,-49.258209],[-16.681200999999998,-49.258089999999996],[-16.681221999999998,-49.257999],[-16.681259,-49.257923],[-16.681451,-49.257858],[-16.681649999999998,-49.257736],[-16.681846,-49.257571999999996],[-16.682128,-49.257289],[-16.682171999999998,-49.257183],[-16.682249,-49.257019],[-16.682375999999998,-49.256598999999994],[-16.682396999999998,-49.256392999999996],[-16.682385999999997,-49.256057],[-16.682378,-49.255966],[-16.682277,-49.255626],[-16.681997,-49.255199],[-16.681839999999998,-49.255019999999995],[-16.681608,-49.254844],[-16.68143,-49.254745],[-16.681037,-49.254638],[-16.680635,-49.254611],[-16.680198,-49.254722],[-16.680156,-49.254543],[-16.679901,-49.253723],[-16.679672,-49.252952],[-16.679565,-49.252573999999996],[-16.679441,-49.252128],[-16.679218,-49.251365],[-16.679102999999998,-49.250957],[-16.679047999999998,-49.250758999999995],[-16.678821,-49.250022],[-16.678684,-49.249542],[-16.678577,-49.249145],[-16.678482,-49.248844],[-16.678148,-49.247794999999996],[-16.677899999999998,-49.246925],[-16.677578999999998,-49.245838],[-16.677561999999998,-49.245746],[-16.677618,-49.245661999999996],[-16.677633,-49.245601],[-16.677626999999998,-49.245532],[-16.677606,-49.245478999999996],[-16.677561999999998,-49.245433],[-16.677507,-49.245402999999996],[-16.677443999999998,-49.245394999999995],[-16.67737,-49.245414],[-16.677319999999998,-49.245452],[-16.677286,-49.245509999999996],[-16.677238,-49.245567],[-16.677167,-49.245585999999996],[-16.677068,-49.24559],[-16.676879,-49.245478999999996],[-16.676814999999998,-49.245371999999996],[-16.676803,-49.245262],[-16.676834,-49.245146999999996],[-16.676855,-49.24509],[-16.676855,-49.245025],[-16.676837,-49.244968],[-16.676683,-49.244628],[-16.676624,-49.244445],[-16.676572,-49.244251],[-16.676541999999998,-49.243991],[-16.676475,-49.243804],[-16.676385,-49.243621],[-16.676247999999998,-49.243109999999994],[-16.676233,-49.242937999999995],[-16.676235,-49.242881],[-16.676218,-49.242819999999995],[-16.676192999999998,-49.242782],[-16.67612,-49.242733],[-16.676044,-49.242667999999995],[-16.676002,-49.242571999999996],[-16.676015,-49.242453999999995],[-16.676046,-49.242359],[-16.67612,-49.242239999999995],[-16.676178999999998,-49.242202],[-16.676242,-49.242183],[-16.676347,-49.242205999999996],[-16.676403999999998,-49.242228999999995],[-16.676503999999998,-49.242218],[-16.676555,-49.242183],[-16.676588,-49.242129999999996],[-16.676605,-49.242073],[-16.676600999999998,-49.242003999999994],[-16.676574,-49.241946999999996],[-16.67653,-49.241904999999996],[-16.676475,-49.241878],[-16.676431,-49.241820999999995],[-16.676227,-49.241138],[-16.676082,-49.240634],[-16.675872,-49.239909999999995],[-16.675698999999998,-49.239295],[-16.675725,-49.239238],[-16.675722,-49.239185],[-16.67568,-49.239124],[-16.675639999999998,-49.239101],[-16.675052,-49.237052],[-16.675117,-49.23701],[-16.675169999999998,-49.236953],[-16.675214,-49.236854],[-16.67522,-49.236751],[-16.675186,-49.23664],[-16.67514,-49.236576],[-16.675031,-49.236506999999996],[-16.6749,-49.236492],[-16.674796999999998,-49.236529999999995],[-16.674736,-49.236582999999996],[-16.674623,-49.236537],[-16.674481999999998,-49.236430999999996],[-16.673488,-49.235687],[-16.673074,-49.235327999999996],[-16.672273,-49.234671999999996],[-16.672045999999998,-49.234545999999995],[-16.672052,-49.234375],[-16.672,-49.234213999999994],[-16.671917999999998,-49.2341],[-16.671841999999998,-49.234038999999996],[-16.671744999999998,-49.233993],[-16.671508,-49.233505],[-16.671450999999998,-49.233345],[-16.67119,-49.232318],[-16.671159,-49.2322],[-16.670661,-49.229994999999995],[-16.670251,-49.228148999999995],[-16.670194,-49.227909],[-16.670188,-49.227740999999995],[-16.670206,-49.22763],[-16.670251,-49.227539],[-16.670265,-49.227301999999995],[-16.670227,-49.227138],[-16.67016,-49.226963],[-16.67003,-49.226794999999996],[-16.669969,-49.226763999999996],[-16.669881,-49.226745],[-16.669781999999998,-49.226684],[-16.669691,-49.226631],[-16.669496,-49.226566],[-16.668848999999998,-49.226352],[-16.668506,-49.226237999999995],[-16.667987,-49.226001],[-16.667586999999997,-49.225840999999996],[-16.667441999999998,-49.225840999999996],[-16.66542,-49.224455999999996],[-16.660294999999998,-49.220946999999995],[-16.659751,-49.220572999999995],[-16.659523999999998,-49.220417],[-16.659345,-49.220302],[-16.658361,-49.219707],[-16.657108,-49.218978],[-16.654918,-49.217749999999995],[-16.653458999999998,-49.216926],[-16.652473,-49.216364999999996],[-16.651664,-49.215880999999996],[-16.648951999999998,-49.213618999999994],[-16.648336,-49.213085],[-16.647796,-49.212657],[-16.646703,-49.211673],[-16.645778,-49.21096],[-16.644578,-49.210074999999996],[-16.644171999999998,-49.209838],[-16.642892,-49.208937999999996],[-16.639165,-49.206244999999996],[-16.638576,-49.205875],[-16.637769,-49.205481999999996],[-16.636343,-49.205065999999995],[-16.635082,-49.204916999999995],[-16.633858999999998,-49.205017],[-16.633319,-49.205073999999996],[-16.63054,-49.205375],[-16.623279,-49.206047],[-16.622854,-49.206092],[-16.620476999999998,-49.206343999999994],[-16.619374999999998,-49.20639],[-16.619161,-49.206378],[-16.61626,-49.205982],[-16.612249,-49.205425],[-16.611981999999998,-49.205368],[-16.610661999999998,-49.205081],[-16.609631999999998,-49.204882999999995],[-16.607027,-49.204539999999994],[-16.605714,-49.204093],[-16.60453,-49.203478999999994],[-16.603434999999998,-49.202701],[-16.599816999999998,-49.199489],[-16.598518,-49.198336999999995],[-16.597133,-49.197227],[-16.595819,-49.196498],[-16.587736,-49.19408],[-16.586451999999998,-49.193549999999995],[-16.585407,-49.192789999999995],[-16.584581,-49.191824999999994],[-16.584072,-49.190951999999996],[-16.581903,-49.185477999999996],[-16.581633999999998,-49.1842],[-16.581405,-49.170272],[-16.581226,-49.168639999999996],[-16.580678,-49.167269999999995],[-16.576089,-49.161128],[-16.574893,-49.159622],[-16.573031999999998,-49.158004],[-16.57121,-49.157077],[-16.565435,-49.154689],[-16.547024999999998,-49.15126],[-16.545164,-49.150439999999996],[-16.543609,-49.149963],[-16.539517999999997,-49.149234],[-16.537855,-49.149100999999995],[-16.536111,-49.149089],[-16.535255,-49.148914],[-16.533573,-49.148269],[-16.532536999999998,-49.147377],[-16.531721,-49.146369],[-16.531301,-49.145537999999995],[-16.530753999999998,-49.144073],[-16.528095,-49.136314],[-16.527438999999998,-49.135162],[-16.515826999999998,-49.121272999999995],[-16.514561999999998,-49.12038],[-16.508844,-49.117263],[-16.506892999999998,-49.115455],[-16.498237,-49.106803],[-16.496658,-49.105194],[-16.489122,-49.097618],[-16.488267,-49.096759],[-16.487651,-49.096171999999996],[-16.487109999999998,-49.095656999999996],[-16.484537,-49.093298999999995],[-16.484282999999998,-49.093021],[-16.483667,-49.092394999999996],[-16.483503,-49.092211999999996],[-16.482426999999998,-49.091136],[-16.481946,-49.090553],[-16.481073,-49.089400999999995],[-16.473321,-49.079204],[-16.469289,-49.070808],[-16.46751,-49.068476999999994],[-16.465881,-49.066660999999996],[-16.460514,-49.060477999999996],[-16.459455,-49.059267999999996],[-16.458624999999998,-49.058319],[-16.457622,-49.057173999999996],[-16.455989,-49.055309],[-16.454698,-49.054016],[-16.451709,-49.050559],[-16.450822,-49.049144],[-16.450273,-49.047633999999995],[-16.450117,-49.045944],[-16.450273,-49.04438],[-16.451159999999998,-49.039916],[-16.451249999999998,-49.038909],[-16.451103,-49.036952],[-16.450927,-49.036089999999994],[-16.448223,-49.023765],[-16.447727,-49.022251],[-16.447141,-49.021204999999995],[-16.446462,-49.020526],[-16.446186,-49.020252],[-16.445000999999998,-49.019546],[-16.443786,-49.019096],[-16.442833999999998,-49.018974],[-16.43337,-49.018524],[-16.432378,-49.018333],[-16.431763999999998,-49.018156999999995],[-16.430629,-49.017748999999995],[-16.429363,-49.01715],[-16.428383999999998,-49.016563],[-16.420896,-49.011966],[-16.416805,-49.009471],[-16.414873,-49.00806],[-16.413908,-49.006941999999995],[-16.413137,-49.005676],[-16.412654,-49.004207],[-16.409364,-48.989959],[-16.408687,-48.988310999999996],[-16.405174,-48.981502],[-16.404642,-48.980284999999995],[-16.402862,-48.976211],[-16.40176,-48.973693],[-16.400109999999998,-48.970076999999996],[-16.398908,-48.967898999999996],[-16.396665,-48.96442],[-16.396259,-48.963702999999995],[-16.394758,-48.961287999999996],[-16.394105,-48.960525],[-16.393529,-48.959831],[-16.393182,-48.959441999999996],[-16.392801,-48.959075],[-16.392222999999998,-48.958659999999995],[-16.383686,-48.953567],[-16.381414,-48.952079],[-16.380912,-48.951727999999996],[-16.379998999999998,-48.950931],[-16.378034,-48.94889],[-16.377475,-48.948375],[-16.376034999999998,-48.947047999999995],[-16.374813,-48.945648],[-16.37388,-48.944857999999996],[-16.373514,-48.944576],[-16.373103999999998,-48.944244],[-16.3726,-48.943771],[-16.370933,-48.942066],[-16.369820999999998,-48.940929],[-16.368731999999998,-48.939814999999996],[-16.367715,-48.938781],[-16.367162,-48.938213],[-16.365711,-48.936794],[-16.365388,-48.936477],[-16.364715,-48.935736999999996],[-16.363613,-48.934599999999996],[-16.363001999999998,-48.934042999999996],[-16.362427999999998,-48.933574],[-16.361905999999998,-48.933242],[-16.360872,-48.932722999999996],[-16.357187,-48.930988],[-16.3549,-48.929885],[-16.354639,-48.929714],[-16.354534,-48.929621999999995],[-16.354302999999998,-48.929351],[-16.35419,-48.929157],[-16.354112,-48.928976999999996],[-16.354060999999998,-48.928787],[-16.353979,-48.928149999999995],[-16.353614,-48.92501],[-16.353396999999998,-48.922889],[-16.353358999999998,-48.922374],[-16.353399,-48.921329],[-16.353234999999998,-48.919757],[-16.353021,-48.918234999999996],[-16.352762,-48.915966],[-16.352705999999998,-48.915622],[-16.352563,-48.915077],[-16.352373,-48.914508],[-16.352249,-48.914138],[-16.35193,-48.913455],[-16.351485999999998,-48.912651],[-16.351057,-48.912067],[-16.347887999999998,-48.908065],[-16.346172,-48.905871999999995],[-16.345197,-48.90472],[-16.344329,-48.903822999999996],[-16.343421,-48.90277],[-16.34254,-48.901695],[-16.342285,-48.901412],[-16.341860999999998,-48.900928],[-16.340766,-48.899673],[-16.34048,-48.899383],[-16.339176,-48.89817],[-16.337352,-48.896353999999995],[-16.336579999999998,-48.895561],[-16.336247999999998,-48.895174999999995],[-16.335974999999998,-48.894813],[-16.335770999999998,-48.894512],[-16.334910999999998,-48.893074],[-16.334429999999998,-48.89241],[-16.333982,-48.891735],[-16.332984,-48.890609],[-16.332096,-48.889365999999995],[-16.322174,-48.874984],[-16.321817,-48.874362],[-16.321575,-48.873813],[-16.321338,-48.873096],[-16.32092,-48.87144],[-16.320203,-48.869651],[-16.319852,-48.868759],[-16.319021,-48.867008],[-16.317681999999998,-48.863856999999996],[-16.317338,-48.862868999999996],[-16.317102,-48.861888],[-16.31484,-48.845546],[-16.314693,-48.843135],[-16.314602999999998,-48.842493999999995],[-16.314193,-48.840938],[-16.314018,-48.839565],[-16.312853999999998,-48.831126999999995],[-16.312708999999998,-48.830272],[-16.31249,-48.829502],[-16.312288,-48.82899],[-16.312015,-48.828421999999996],[-16.311695,-48.827864999999996],[-16.311344,-48.827346],[-16.310916,-48.826843],[-16.307807,-48.823474],[-16.306987,-48.822573999999996],[-16.303224,-48.818511],[-16.302764,-48.81789],[-16.302412999999998,-48.817287],[-16.302141,-48.816658],[-16.301887,-48.816005],[-16.300523,-48.812239999999996],[-16.300285,-48.811206],[-16.300058,-48.810565],[-16.299867,-48.810111],[-16.299156,-48.808876],[-16.296302,-48.803118999999995],[-16.295828999999998,-48.802313999999996],[-16.295327999999998,-48.801631],[-16.294725,-48.80104],[-16.293916,-48.800411],[-16.293219999999998,-48.800014],[-16.292661,-48.799769999999995],[-16.291849,-48.799490999999996],[-16.288707,-48.798618],[-16.288014999999998,-48.798339],[-16.287378,-48.797954],[-16.286928,-48.79763],[-16.286566999999998,-48.797309],[-16.282242999999998,-48.792957],[-16.280958,-48.791633],[-16.280544,-48.791225],[-16.279054,-48.789756],[-16.278339,-48.788897999999996],[-16.277811,-48.787836999999996],[-16.277637,-48.78733],[-16.277483999999998,-48.786753999999995],[-16.277399,-48.786204999999995],[-16.276508,-48.77943],[-16.276377999999998,-48.778732],[-16.276191,-48.778178999999994],[-16.275994999999998,-48.777698],[-16.275679999999998,-48.777114],[-16.27543,-48.776720999999995],[-16.274236,-48.77507],[-16.273875999999998,-48.774501],[-16.273391,-48.773654],[-16.273153,-48.773222999999994],[-16.272544,-48.772116999999994],[-16.272192,-48.771513999999996],[-16.271797,-48.770969],[-16.27152,-48.770675],[-16.265874,-48.765913999999995],[-16.265285,-48.765411],[-16.263303,-48.76379],[-16.262907,-48.763557],[-16.2625,-48.763380999999995],[-16.262016,-48.763256],[-16.26148,-48.763183],[-16.260015,-48.763037999999995],[-16.259441,-48.762992],[-16.253723,-48.762553999999994],[-16.25279,-48.762347999999996],[-16.249637,-48.761435999999996],[-16.248964,-48.761322],[-16.24834,-48.761275999999995],[-16.243019,-48.761032],[-16.242425,-48.761008999999994],[-16.241146,-48.760967],[-16.240427,-48.760833],[-16.239549,-48.76054],[-16.238822,-48.760146999999996],[-16.225322,-48.752277],[-16.224317,-48.751708],[-16.223747,-48.751377],[-16.209222,-48.742869999999996],[-16.208591,-48.742504],[-16.203364999999998,-48.739456],[-16.202962,-48.739138999999994],[-16.20259,-48.7388],[-16.202113999999998,-48.738268999999995],[-16.19461,-48.72911],[-16.194215,-48.728626],[-16.192280999999998,-48.726279999999996],[-16.191656,-48.725502],[-16.190765,-48.724376],[-16.189178,-48.722502999999996],[-16.188648,-48.721744],[-16.188404,-48.721275],[-16.188228,-48.720850999999996],[-16.188076,-48.720400999999995],[-16.187931,-48.719778999999996],[-16.187877,-48.719387],[-16.187858,-48.718612],[-16.187877,-48.718188999999995],[-16.187946,-48.717712],[-16.188087,-48.717189],[-16.18836,-48.716392],[-16.189279,-48.714164],[-16.18959,-48.713328999999995],[-16.189958,-48.712317999999996],[-16.190092,-48.711948],[-16.19025,-48.711504999999995],[-16.190538,-48.710639],[-16.190998,-48.709392],[-16.191146,-48.708968999999996],[-16.191416999999998,-48.708183],[-16.191593,-48.707522999999995],[-16.191703,-48.706558],[-16.191710999999998,-48.705912999999995],[-16.191549,-48.704875],[-16.191421,-48.704391],[-16.19119,-48.703818999999996],[-16.190884999999998,-48.703219999999995],[-16.190557,-48.702697],[-16.189905,-48.701938],[-16.185734999999998,-48.697573999999996],[-16.185377,-48.697162],[-16.185022,-48.696678],[-16.18477,-48.696262],[-16.184541,-48.695761999999995],[-16.184368,-48.695297],[-16.184236,-48.694793],[-16.184141,-48.694187],[-16.184103,-48.693717],[-16.18411,-48.69329],[-16.184162,-48.692806],[-16.184276,-48.692291],[-16.184414999999998,-48.691761],[-16.185384,-48.689105],[-16.185648999999998,-48.688559999999995],[-16.185976999999998,-48.687992],[-16.186398999999998,-48.687346999999995],[-16.186746,-48.686907999999995],[-16.187442,-48.686175999999996],[-16.187665,-48.685897],[-16.188026,-48.685404999999996],[-16.188243,-48.684996999999996],[-16.188526,-48.684421],[-16.188924,-48.683322],[-16.190813,-48.677023999999996],[-16.190988,-48.676356999999996],[-16.191072,-48.675815],[-16.19111,-48.675258],[-16.191088999999998,-48.674659],[-16.190998,-48.673995],[-16.190849,-48.673384999999996],[-16.190666,-48.672816999999995],[-16.188959,-48.669109],[-16.188755999999998,-48.668571],[-16.188589,-48.668029],[-16.187718999999998,-48.664328999999995],[-16.18753,-48.663737999999995],[-16.187276,-48.663131],[-16.186117,-48.6609],[-16.186065,-48.660804],[-16.185783,-48.660258999999996],[-16.183349,-48.655567],[-16.183004,-48.65493],[-16.182731,-48.654506],[-16.182319,-48.653968],[-16.181713,-48.653358],[-16.181124999999998,-48.652915],[-16.179023,-48.651461999999995],[-16.178358,-48.651016],[-16.177917,-48.650794],[-16.177188,-48.65047],[-16.176565,-48.650217999999995],[-16.175516,-48.649817999999996],[-16.174985,-48.649532],[-16.174537,-48.649218999999995],[-16.174205,-48.648928999999995],[-16.173799,-48.648464],[-16.173368,-48.647856999999995],[-16.172798,-48.646995],[-16.172504,-48.646471999999996],[-16.172287999999998,-48.645998999999996],[-16.172065,-48.645378],[-16.170859999999998,-48.641735],[-16.170642,-48.641124],[-16.170433,-48.640643999999995],[-16.170185,-48.640173999999995],[-16.169937,-48.639784999999996],[-16.167564,-48.636286999999996],[-16.166667,-48.634941],[-16.166282,-48.634422],[-16.165964,-48.634066999999995],[-16.165527,-48.633682],[-16.164375,-48.632846],[-16.164189999999998,-48.632670999999995],[-16.164033,-48.632492],[-16.16386,-48.632236],[-16.163728,-48.632011],[-16.163621,-48.631782],[-16.16352,-48.631507],[-16.163444,-48.631217],[-16.163363999999998,-48.630828],[-16.163145,-48.629096],[-16.162937,-48.627703999999994],[-16.162924999999998,-48.626152],[-16.162822,-48.625403999999996],[-16.162313,-48.623577],[-16.161466,-48.617317],[-16.161333,-48.616592],[-16.161195,-48.616068999999996],[-16.160995,-48.615524],[-16.160709,-48.614925],[-16.160438,-48.614475],[-16.160076,-48.613937],[-16.159694,-48.613456],[-16.15929,-48.613051999999996],[-16.158735,-48.612593999999994],[-16.158206,-48.612209],[-16.157657,-48.611911],[-16.157009,-48.61164],[-16.156398,-48.611442],[-16.155828,-48.611328],[-16.150980999999998,-48.610637],[-16.150533,-48.610534],[-16.149908,-48.610293999999996],[-16.149627,-48.610141],[-16.149316,-48.609943],[-16.149026,-48.609687],[-16.148792,-48.609435999999995],[-16.148526999999998,-48.609111],[-16.148183,-48.608539],[-16.146829,-48.605650999999995],[-16.146385,-48.604614],[-16.145174,-48.601749],[-16.144952,-48.601306],[-16.144758,-48.600989999999996],[-16.144534999999998,-48.600680999999994],[-16.144308,-48.600395],[-16.143947,-48.600032],[-16.143545,-48.599692999999995],[-16.143043,-48.599376],[-16.142509,-48.599121],[-16.141992,-48.598937],[-16.141424,-48.598804],[-16.140859,-48.598743],[-16.14023,-48.598735],[-16.137672,-48.598873],[-16.137123,-48.598864999999996],[-16.136383,-48.598796],[-16.135669,-48.598655],[-16.131519,-48.597465],[-16.130954,-48.597248],[-16.130478999999998,-48.597],[-16.130067,-48.59674],[-16.129258999999998,-48.596171999999996],[-16.128892,-48.595924],[-16.127214,-48.594863],[-16.12537,-48.59357],[-16.121790999999998,-48.591094],[-16.120758,-48.590514999999996],[-16.119911,-48.59016],[-16.119623,-48.590038],[-16.118614,-48.589701999999996],[-16.117850999999998,-48.589487999999996],[-16.116785,-48.589275],[-16.116125,-48.589172],[-16.115645999999998,-48.589084],[-16.114967,-48.588878],[-16.114224999999998,-48.588581],[-16.11347,-48.588156999999995],[-16.112731,-48.587585],[-16.112083,-48.586859999999994],[-16.110882999999998,-48.585364999999996],[-16.11057,-48.584835],[-16.110303,-48.584308],[-16.110087999999998,-48.58377],[-16.109878,-48.583026],[-16.109773,-48.582332],[-16.109752,-48.581542],[-16.110269,-48.574934999999996],[-16.110446,-48.573448],[-16.110481,-48.571689],[-16.110483,-48.57109],[-16.11046,-48.570479999999996],[-16.110439,-48.567783],[-16.110649,-48.565031999999995],[-16.110784,-48.563475999999994],[-16.110858,-48.562872999999996],[-16.110965,-48.562431],[-16.111234,-48.561664],[-16.111428999999998,-48.561264],[-16.111642,-48.560874],[-16.112194,-48.560058],[-16.112436,-48.559695999999995],[-16.113699999999998,-48.557792],[-16.114041999999998,-48.557247],[-16.114318,-48.556709],[-16.114501,-48.556250999999996],[-16.114667,-48.555702],[-16.115406,-48.552715],[-16.115472,-48.552291],[-16.115527999999998,-48.551379999999995],[-16.115527999999998,-48.550914],[-16.115499,-48.550453],[-16.115406999999998,-48.549819],[-16.115249,-48.549136999999995],[-16.114797,-48.54774],[-16.114612,-48.547168],[-16.114122,-48.545566],[-16.113985,-48.544975],[-16.113929,-48.544470999999994],[-16.113934999999998,-48.5438],[-16.114023,-48.543147999999995],[-16.114624,-48.540442999999996],[-16.114701999999998,-48.539825],[-16.114721,-48.539317999999994],[-16.114696,-48.538802999999994],[-16.114622,-48.538264999999996],[-16.113819,-48.533598999999995],[-16.113685,-48.533058],[-16.113536,-48.532615],[-16.113376,-48.532244999999996],[-16.112993,-48.531535999999996],[-16.111594999999998,-48.52959],[-16.111010999999998,-48.528926],[-16.108435999999998,-48.526477],[-16.107418,-48.525558],[-16.106842999999998,-48.525146],[-16.106323,-48.524879],[-16.105636,-48.524589],[-16.099445,-48.522579],[-16.099023,-48.522411],[-16.098617,-48.522197],[-16.098228,-48.521949],[-16.097891999999998,-48.52169],[-16.097580999999998,-48.521418999999995],[-16.097274,-48.521102],[-16.095933,-48.519484999999996],[-16.092316999999998,-48.514872999999994],[-16.090555,-48.512831999999996],[-16.090187,-48.512363],[-16.089872,-48.511848],[-16.089595,-48.511233999999995],[-16.089365,-48.510478],[-16.089265,-48.509913999999995],[-16.089199,-48.509257999999996],[-16.089192999999998,-48.508872],[-16.089235,-48.508182],[-16.089862,-48.502319],[-16.089927,-48.501731],[-16.09029,-48.498432],[-16.090379,-48.497989],[-16.090459,-48.497603999999995],[-16.090688,-48.496921],[-16.090948,-48.496372],[-16.091366999999998,-48.495543999999995],[-16.091812,-48.494735],[-16.092071,-48.494265999999996],[-16.092384,-48.493697999999995],[-16.093353,-48.491668],[-16.093711,-48.491008],[-16.094303,-48.490066],[-16.094873,-48.489021],[-16.095148,-48.488456],[-16.097423,-48.482375999999995],[-16.097707,-48.481491],[-16.097866,-48.480712],[-16.098947,-48.474933],[-16.099088,-48.474342],[-16.10098,-48.469207],[-16.101188,-48.468711],[-16.101661,-48.467352999999996],[-16.101854,-48.466663],[-16.102031,-48.465606],[-16.102087,-48.464523],[-16.101871,-48.461959],[-16.101882,-48.46033],[-16.101931999999998,-48.459861],[-16.102339999999998,-48.456562],[-16.102456999999998,-48.455954999999996],[-16.102688999999998,-48.455237999999994],[-16.102973,-48.454626999999995],[-16.103351,-48.454012999999996],[-16.103690999999998,-48.453604999999996],[-16.108501,-48.448795],[-16.10905,-48.448184],[-16.109447,-48.447582],[-16.113622,-48.440948],[-16.113971,-48.440222999999996],[-16.114219,-48.439487],[-16.114362,-48.438826999999996],[-16.114959,-48.435569],[-16.115092999999998,-48.434936],[-16.115295,-48.434332999999995],[-16.115537,-48.433806999999995],[-16.115871,-48.433237999999996],[-16.116160999999998,-48.432842],[-16.116498,-48.432426],[-16.118278,-48.430685999999994],[-16.118719,-48.430202],[-16.1191,-48.429781999999996],[-16.120113,-48.428416999999996],[-16.12047,-48.427901999999996],[-16.120866,-48.4272],[-16.121202,-48.426292],[-16.12137,-48.425632],[-16.121434999999998,-48.424884],[-16.122161,-48.412258],[-16.122196,-48.411586],[-16.122182,-48.410914999999996],[-16.122139999999998,-48.410415],[-16.122041,-48.409904],[-16.121912,-48.409389],[-16.120941,-48.406645999999995],[-16.120735,-48.406009],[-16.12059,-48.405409999999996],[-16.120355,-48.403602],[-16.120238999999998,-48.403003],[-16.120110999999998,-48.402426999999996],[-16.119968,-48.401908],[-16.119820999999998,-48.401435],[-16.119611,-48.400875],[-16.11939,-48.400282999999995],[-16.119149999999998,-48.399772],[-16.118892,-48.399223],[-16.118555,-48.398509],[-16.118337,-48.397911],[-16.118194,-48.397346],[-16.117943999999998,-48.39579],[-16.117815999999998,-48.395195],[-16.117618,-48.394588],[-16.11733,-48.393961999999995],[-16.117017,-48.393401999999995],[-16.114759,-48.390398999999995],[-16.114587,-48.390097999999995],[-16.114425,-48.389708999999996],[-16.114303,-48.389343],[-16.114204,-48.388892999999996],[-16.114154,-48.388366],[-16.114166,-48.387927999999995],[-16.114190999999998,-48.387664],[-16.114255,-48.387316999999996],[-16.114390999999998,-48.38684],[-16.114601,-48.386351999999995],[-16.118257,-48.379408999999995],[-16.118451999999998,-48.37902],[-16.118686,-48.378459],[-16.118866999999998,-48.377821999999995],[-16.118952999999998,-48.377323],[-16.118997,-48.376650999999995],[-16.118965,-48.37601],[-16.118875,-48.375408],[-16.118721999999998,-48.374869999999994],[-16.118488,-48.374263],[-16.118161999999998,-48.373656999999994],[-16.117834,-48.37318],[-16.114103,-48.368567999999996],[-16.113754,-48.368148],[-16.112512,-48.366668],[-16.109247,-48.362632],[-16.108898,-48.36211],[-16.108764,-48.361830999999995],[-16.108625,-48.361244],[-16.108594,-48.360904],[-16.108642,-48.360336],[-16.108788999999998,-48.359835999999994],[-16.110393,-48.356048],[-16.110656,-48.35527],[-16.110748,-48.354853999999996],[-16.110827999999998,-48.354354],[-16.111022,-48.351687999999996],[-16.111079999999998,-48.350806999999996],[-16.111164,-48.349742],[-16.111263,-48.349112999999996],[-16.111446,-48.348448999999995],[-16.111955,-48.347170999999996],[-16.112129,-48.346702],[-16.112313999999998,-48.346],[-16.113998,-48.338977],[-16.114202,-48.337818],[-16.114601,-48.33517],[-16.114622,-48.334606],[-16.114606,-48.334002999999996],[-16.114316,-48.331466],[-16.11429,-48.330825],[-16.114351,-48.330180999999996],[-16.114449999999998,-48.329414],[-16.1145,-48.328899],[-16.114555,-48.328449],[-16.114701999999998,-48.327155999999995],[-16.114879,-48.32611],[-16.115043,-48.325389],[-16.116937,-48.320571],[-16.117058999999998,-48.320063999999995],[-16.117099,-48.319503],[-16.117065,-48.318317],[-16.117015,-48.317282999999996],[-16.116884,-48.316607999999995],[-16.11638,-48.314845999999996],[-16.116113,-48.314186],[-16.115875,-48.31377],[-16.114021,-48.310752],[-16.113819,-48.31031],[-16.113533999999998,-48.309512999999995],[-16.112361,-48.305957],[-16.112161,-48.305465],[-16.109703,-48.300868],[-16.109247,-48.300224],[-16.108764,-48.299651999999995],[-16.104318,-48.294734],[-16.104021,-48.294337999999996],[-16.103759,-48.293865],[-16.103582,-48.293333999999994],[-16.103427,-48.292578999999996],[-16.103082,-48.289950999999995],[-16.102989,-48.289493],[-16.102847999999998,-48.289080999999996],[-16.102672,-48.288726],[-16.102487,-48.288455],[-16.102258,-48.288173],[-16.101862999999998,-48.287807],[-16.100513,-48.286773],[-16.099007999999998,-48.285861],[-16.098617,-48.28556],[-16.098357999999998,-48.285315999999995],[-16.097343,-48.284214],[-16.097020999999998,-48.283832],[-16.095195,-48.282053999999995],[-16.093236,-48.280288],[-16.092781,-48.279894999999996],[-16.091775,-48.278953],[-16.091563999999998,-48.278697],[-16.091397999999998,-48.27843],[-16.091251,-48.278121],[-16.091096,-48.277708999999994],[-16.090801,-48.276782],[-16.090383,-48.275512],[-16.090198,-48.275076999999996],[-16.089992,-48.274662],[-16.089558999999998,-48.273967],[-16.08922,-48.273559],[-16.08888,-48.27325],[-16.08852,-48.272994],[-16.08815,-48.272796],[-16.08772,-48.272628],[-16.082475,-48.271274],[-16.081979,-48.271118],[-16.081488999999998,-48.270931],[-16.08097,-48.270683],[-16.079565,-48.269855],[-16.079196,-48.269549999999995],[-16.078401,-48.268755999999996],[-16.077039,-48.267471],[-16.076614,-48.267115999999994],[-16.076221,-48.266883],[-16.075826,-48.266723],[-16.075433,-48.266619999999996],[-16.074918,-48.266555],[-16.073047,-48.266445],[-16.072720999999998,-48.266399],[-16.072259,-48.266287999999996],[-16.071762,-48.266117],[-16.071277,-48.265884],[-16.070923999999998,-48.265674],[-16.070589,-48.265392],[-16.070169,-48.264961],[-16.069713,-48.264541],[-16.069468999999998,-48.264368999999995],[-16.068973,-48.264106],[-16.068557,-48.263957],[-16.068115,-48.26387],[-16.067612999999998,-48.263847],[-16.067166999999998,-48.263881],[-16.066727999999998,-48.263977],[-16.065497999999998,-48.264362],[-16.065020999999998,-48.264438],[-16.064556,-48.264452999999996],[-16.064132,-48.264419],[-16.063644,-48.264305],[-16.063373,-48.264209],[-16.061315,-48.263416],[-16.059421,-48.262598999999994],[-16.049505,-48.258533],[-16.045475,-48.256930999999994],[-16.044666,-48.256687],[-16.043764,-48.256515],[-16.043129999999998,-48.256423],[-16.041684999999998,-48.256285999999996],[-16.0412,-48.256277999999995],[-16.039984999999998,-48.256217],[-16.038398,-48.255717999999995],[-16.038097,-48.255599],[-16.036939,-48.255114999999996],[-16.035697,-48.254348],[-16.035213,-48.254127],[-16.034582,-48.253898],[-16.033882,-48.253726],[-16.033445,-48.253668999999995],[-16.025596,-48.253105],[-16.024877,-48.252936999999996],[-16.024204,-48.252674],[-16.022737,-48.25188],[-16.01951,-48.250007],[-16.017446,-48.248892999999995],[-16.016579999999998,-48.248573],[-16.009107,-48.246722999999996],[-16.008457,-48.246573999999995],[-16.005308,-48.245779999999996],[-16.004644,-48.245554999999996],[-15.999486,-48.243232],[-15.998797999999999,-48.242832],[-15.998386,-48.242529999999995],[-15.9979,-48.242084],[-15.997421999999998,-48.241512],[-15.997012999999999,-48.240894],[-15.993666,-48.234195],[-15.993371,-48.233669],[-15.992737,-48.232791],[-15.990243999999999,-48.230064],[-15.989647999999999,-48.22911],[-15.989398,-48.22853],[-15.989246,-48.228038],[-15.988595,-48.224689],[-15.988311999999999,-48.223571],[-15.988031999999999,-48.222877],[-15.986533999999999,-48.219837],[-15.986182999999999,-48.219176999999995],[-15.977124,-48.201],[-15.976647999999999,-48.199892999999996],[-15.976445,-48.198989],[-15.976284999999999,-48.19799],[-15.975111,-48.190574],[-15.975066,-48.19028],[-15.974924999999999,-48.189769],[-15.974654,-48.189136],[-15.974333999999999,-48.188568],[-15.973917,-48.187973],[-15.9734,-48.187427],[-15.972861,-48.186972999999995],[-15.969693,-48.184638],[-15.969145999999999,-48.184238],[-15.958582,-48.176421999999995],[-15.957892999999999,-48.176047999999994],[-15.957184999999999,-48.175792],[-15.953469,-48.174735999999996],[-15.952881999999999,-48.174568],[-15.949262,-48.173542],[-15.946330999999999,-48.172686999999996],[-15.942893,-48.171699],[-15.932618,-48.168758],[-15.930064999999999,-48.167784999999995],[-15.928552,-48.167339],[-15.927919999999999,-48.167170999999996],[-15.927807999999999,-48.167159999999996],[-15.926589,-48.167037],[-15.926119,-48.166908],[-15.923762,-48.166267],[-15.923478,-48.166174999999996],[-15.920333,-48.165264],[-15.915944,-48.163954999999994],[-15.915204999999998,-48.163588999999995],[-15.914613999999998,-48.163199999999996],[-15.914081,-48.162715],[-15.913628,-48.162203999999996],[-15.913293,-48.161701],[-15.91298,-48.161055999999995],[-15.912554,-48.159755],[-15.911512,-48.156352],[-15.908814999999999,-48.147425999999996],[-15.908088999999999,-48.14516],[-15.908068,-48.145095],[-15.907916,-48.144599],[-15.907881999999999,-48.144489],[-15.907093999999999,-48.141760999999995],[-15.902474999999999,-48.126566999999994],[-15.899108,-48.115511999999995],[-15.894884,-48.101558],[-15.894480999999999,-48.100223],[-15.894288999999999,-48.099571],[-15.893901999999999,-48.098316],[-15.890476999999999,-48.086956],[-15.890274999999999,-48.086292],[-15.888986,-48.082027],[-15.888558999999999,-48.080608],[-15.885814,-48.071467999999996],[-15.884552999999999,-48.067268],[-15.883825,-48.064689],[-15.880970999999999,-48.055381],[-15.880137999999999,-48.054035],[-15.876890999999999,-48.049220999999996],[-15.876441999999999,-48.048556999999995],[-15.876159,-48.048137],[-15.875126999999999,-48.046606999999995],[-15.874628999999999,-48.045673],[-15.874265999999999,-48.044661999999995],[-15.874087,-48.043743],[-15.874058,-48.042857999999995],[-15.874132999999999,-48.042052999999996],[-15.874353999999999,-48.040546],[-15.874633999999999,-48.038516],[-15.874811,-48.037254],[-15.875670999999999,-48.031631],[-15.875843999999999,-48.030291999999996],[-15.876099,-48.028572],[-15.876309,-48.026844],[-15.876472,-48.02597],[-15.876667,-48.024242],[-15.876871999999999,-48.02301],[-15.877125,-48.021468999999996],[-15.877301,-48.020236],[-15.877407999999999,-48.0195],[-15.877894,-48.01564],[-15.878005,-48.014877],[-15.878046,-48.014537],[-15.878252,-48.013126],[-15.878395999999999,-48.011455],[-15.878418,-48.011337],[-15.878468999999999,-48.011202999999995],[-15.878532,-48.010982],[-15.878549,-48.010833],[-15.878540999999998,-48.010734],[-15.878473999999999,-48.010494],[-15.878321999999999,-48.010231],[-15.878248999999999,-48.010036],[-15.878212,-48.009857],[-15.877958999999999,-48.007221],[-15.877673,-48.004115999999996],[-15.877464999999999,-48.001490999999994],[-15.877305,-47.999683],[-15.8773,-47.999595],[-15.87712,-47.997482],[-15.876899,-47.994983],[-15.876688999999999,-47.992602999999995],[-15.876543999999999,-47.990950999999995],[-15.87637,-47.989112],[-15.876209,-47.987262],[-15.875933999999999,-47.984451],[-15.875753999999999,-47.983638],[-15.875497999999999,-47.982906],[-15.875129999999999,-47.982109],[-15.873688999999999,-47.979327999999995],[-15.873367,-47.978697999999994],[-15.87187,-47.975746],[-15.871388999999999,-47.974792],[-15.871117,-47.974243],[-15.870951,-47.973907],[-15.870771999999999,-47.973521999999996],[-15.870394999999998,-47.972815999999995],[-15.869598,-47.971270999999994],[-15.869404,-47.970901],[-15.868324999999999,-47.968810999999995],[-15.868065999999999,-47.968326],[-15.868029,-47.968257],[-15.86765,-47.967555],[-15.866586,-47.965415],[-15.865898,-47.964431],[-15.865616999999999,-47.963943],[-15.865124999999999,-47.962982],[-15.864809,-47.962393999999996],[-15.864303,-47.96096],[-15.863997,-47.960353],[-15.863859,-47.960079],[-15.863306,-47.959025999999994],[-15.862629,-47.957763],[-15.862233999999999,-47.957027],[-15.861934999999999,-47.956436],[-15.861619,-47.95581],[-15.861441,-47.955574],[-15.861251999999999,-47.955431999999995],[-15.861013,-47.955314],[-15.86083,-47.955276],[-15.860657999999999,-47.955272],[-15.860486,-47.955290999999995],[-15.859950999999999,-47.955467],[-15.859689,-47.955622999999996],[-15.859477,-47.955721999999994],[-15.859249,-47.955825],[-15.859,-47.955901999999995],[-15.858825,-47.955928],[-15.857486,-47.955729999999996],[-15.856527999999999,-47.955593],[-15.855587,-47.955439999999996],[-15.855053999999999,-47.955352],[-15.853829999999999,-47.955154],[-15.851317,-47.954769],[-15.850721,-47.954673],[-15.850276,-47.954597],[-15.848542,-47.954307],[-15.848033999999998,-47.954218999999995],[-15.846974,-47.954043999999996],[-15.845830999999999,-47.953857],[-15.845542,-47.953818999999996],[-15.843795,-47.953559],[-15.843344,-47.953384],[-15.842887999999999,-47.953102],[-15.842614,-47.952835],[-15.842317,-47.952419],[-15.84216,-47.952056],[-15.842058999999999,-47.951629],[-15.842006999999999,-47.950775],[-15.841958,-47.950179999999996],[-15.841952999999998,-47.949703],[-15.841973999999999,-47.949386],[-15.842080999999999,-47.948893999999996],[-15.842464999999999,-47.94754],[-15.842813999999999,-47.94638],[-15.843585,-47.944430999999994],[-15.844125,-47.942702999999995],[-15.844576,-47.940917],[-15.844702,-47.939907],[-15.84479,-47.938446],[-15.844876,-47.937076],[-15.845101,-47.933616],[-15.845208999999999,-47.931804],[-15.84525,-47.931179],[-15.845307,-47.929629999999996],[-15.845419,-47.929328],[-15.845559,-47.929179999999995],[-15.845787999999999,-47.929077],[-15.846053999999999,-47.929092],[-15.846335,-47.929313],[-15.847012999999999,-47.930698],[-15.847045,-47.930786],[-15.847064,-47.9309],[-15.847057999999999,-47.931014999999995],[-15.846952,-47.931197999999995],[-15.846770999999999,-47.931324],[-15.846656999999999,-47.931357999999996],[-15.846342,-47.9314],[-15.844228999999999,-47.931255],[-15.843316,-47.931228],[-15.842663,-47.931281999999996],[-15.842144,-47.931242999999995],[-15.84109,-47.931137],[-15.840354999999999,-47.930957],[-15.839528999999999,-47.930617999999996],[-15.838991,-47.930327999999996],[-15.838232,-47.929514999999995],[-15.837288999999998,-47.928466],[-15.83691,-47.927997],[-15.836494,-47.927402],[-15.836362999999999,-47.927215],[-15.835865,-47.926513],[-15.835621,-47.926193],[-15.835023,-47.925368999999996],[-15.834902999999999,-47.925005999999996],[-15.8346,-47.92416],[-15.834473,-47.923908],[-15.83414,-47.923351],[-15.833881,-47.922965999999995],[-15.833497999999999,-47.922439],[-15.833328999999999,-47.922199],[-15.833355999999998,-47.921980999999995],[-15.833454999999999,-47.92192],[-15.833573,-47.921946999999996],[-15.833637,-47.922053999999996],[-15.833634,-47.922183],[-15.833179999999999,-47.922515],[-15.832543999999999,-47.923010999999995],[-15.832137,-47.923316],[-15.831508,-47.923781999999996],[-15.830169,-47.924827],[-15.830143,-47.9248],[-15.830077,-47.924780999999996],[-15.830039,-47.924789],[-15.829984999999999,-47.924834999999995],[-15.829614,-47.924095],[-15.829663,-47.924034],[-15.829668,-47.923942],[-15.829623999999999,-47.923866],[-15.829543,-47.923828],[-15.829459,-47.923851],[-15.828507,-47.922489],[-15.828296,-47.922202999999996],[-15.828318,-47.922111],[-15.828284,-47.922027],[-15.828204999999999,-47.921985],[-15.828116999999999,-47.922],[-15.827924,-47.921745],[-15.82752,-47.921203]]}}]}
/**
 * Copyright 2014 Teralytics AG
 *
 * @author Kirill Zhuravlev <kirill.zhuravlev@teralytics.ch>
 *
 */
if("undefined"==typeof d3)throw"D3 SVG Overlay for Leaflet requires D3 library loaded first";if("undefined"==typeof L)throw"D3 SVG Overlay for Leaflet requires Leaflet library loaded first";d3.select("head").append("style").attr("type","text/css").text("svg.d3-overlay{pointer-events:none;position:absolute;}svg.d3-overlay>g.origin *{pointer-events:visiblePainted;}"),L.D3SvgOverlay=L.Class.extend({includes:L.Mixin.Events,options:function(t){return t===void 0?this._options:(t.zoomAnimate=t.zoomAnimate===void 0?!0:t.zoomAnimate,t.zoomHide=t.zoomHide===void 0?!t.zoomAnimate:t.zoomHide,t.zoomDraw=t.zoomDraw===void 0?!0:t.zoomDraw,t.jsAnimation=t.jsAnimation||!1,this._options=t)},draw:function(){this._drawCallback(this.selection,this.projection,this.map.getZoom())},initialize:function(t,i){this.options(i||{}),this._drawCallback=t},updSvg:function(){var t=this.map.getSize(),i=this.map.getPixelBounds(),s=this.map.getPixelOrigin();this._svg.attr("width",3*t.x).attr("height",3*t.y).attr("viewBox",[0,0,3*t.x,3*t.y].join(" ")).style("left",i.min.x-s.x-t.x+"px").style("top",i.min.y-s.y-t.y+"px"),this._svg.select("g.origin").attr("transform",["translate(",t.x-(i.min.x-s.x),",",t.y-(i.min.y-s.y),")"].join(""))},_zoomCalc:function(t){var i=t.zoom||this.map._zoom;this._zoomDiff=i-this._zoom,this._scale=Math.pow(2,this._zoomDiff),this._shift=this.map._latLngToNewLayerPoint(this._origin,i,t.center||this.map._initialCenter)},_zoomStart:function(){!this.translateAnim||this.translateAnim.remove(),!this.scaleAnim||this.scaleAnim.remove()},_zoomAnimate:function(){L.Browser.ie||this._options.jsAnimation?(this._gTranslate.transition().duration(250).attr("transform","translate("+this._shift.x+","+this._shift.y+")").ease(d3.ease("cubic-out")),this._gScale.transition().duration(250).attr("transform","scale("+this._scale+")").ease(d3.ease("cubic-out"))):(this.translateAnim=this._svg.append("animateTransform").attr("xlink:href",this._gTranslateXRef).attr("attributeName","transform").attr("attributeType","XML").attr("type","translate").attr("to",this._shift.x+","+this._shift.y).attr("dur","0.25s").attr("calcMode","spline").attr("keyTimes","0; 1").attr("keySplines","0 0 0.25 1").attr("begin","indefinite").attr("fill","freeze"),this.scaleAnim=this._svg.append("animateTransform").attr("xlink:href",this._gScaleXRef).attr("attributeName","transform").attr("attributeType","XML").attr("type","scale").attr("to",this._scale+","+this._scale).attr("dur","0.25s").attr("calcMode","spline").attr("keyTimes","0; 1").attr("keySplines","0 0 0.25 1").attr("begin","indefinite").attr("fill","freeze"),this.translateAnim.node().beginElement(),this.scaleAnim.node().beginElement())},_zoomEnd:function(){this._gTranslate.attr("transform","translate("+this._shift.x+","+this._shift.y+")"),this._gScale.attr("transform","scale("+this._scale+","+this._scale+")"),!this.translateAnim||this.translateAnim.remove(),!this.scaleAnim||this.scaleAnim.remove(),this._options.zoomDraw&&this.draw()},_zoomChange:function(){this._gTranslate.attr("transform","translate("+this._shift.x+","+this._shift.y+")"),this._gScale.attr("transform","scale("+this._scale+","+this._scale+")"),this._options.zoomDraw&&this.draw()},onAdd:function(t){this.map=t,this._zoomAnimated=this._options.zoomAnimate&&t._zoomAnimated;var i=this;this._svg=d3.select(t._panes.overlayPane).append("svg").classed({"d3-overlay":!0,"leaflet-zoom-hide":this._options.zoomHide}),this._gOrigin=this._svg.append("g").classed("origin",!0),this.map.on("moveend",this.updSvg,this),this._origin=this.map.layerPointToLatLng([0,0]),this._zoom=this.map.getZoom(),this._shift=L.point(0,0),this._scale=1,this.projection={latLngToLayerPoint:function(t,s){s=s||i._zoom;var a=i.map.project(L.latLng(t),s),e=i.map.project(i._origin,s);return a._subtract(e)},layerPointToLatLng:function(t,s){s=s||i._zoom;var a=i.map.project(i._origin,s);return i.map.unproject(t.add(a),s)},unitsPerMeter:256*Math.pow(2,i._zoom)/40075017,map:i.map,layer:i},this.projection.latLngToLayerFloatPoint=this.projection.latLngToLayerPoint,this.projection.getZoom=this.map.getZoom.bind(this.map),this.projection.getBounds=this.map.getBounds.bind(this.map);var s="id"+Math.random().toString(26).slice(2,7);this._gTranslateXRef="#"+s,this._gTranslate=this._gOrigin.append("g").classed("translate-anim",!0).attr("transform","translate(0,0)").attr("id",s),s="id"+Math.random().toString(26).slice(2,7),this._gScaleXRef="#"+s,this.selection=this._gScale=this._gTranslate.append("g").classed("scale-anim",!0).attr("transform","scale(1,1)").attr("id",s),this._zoomAnimated?(this.map.on("zoomanim",this._zoomCalc,this),this.map.on("zoomstart",this._zoomStart,this),this.map.on("zoomanim",this._zoomAnimate,this),this.map.on("zoomend",this._zoomEnd,this)):(this.map.on("viewreset",this._zoomCalc,this),this.map.on("viewreset",this._zoomChange,this)),this.updSvg(),this.draw()},onRemove:function(){this._svg.remove(),this.map.off(this._options.updateOn,this.draw,this),this.map.off("moveend",this.updSvg,this),this._zoomAnimated?(this.map.off("zoomanim",this._zoomCalc,this),this.map.off("zoomstart",this._zoomStart,this),this.map.off("zoomanim",this._zoomAnimate,this),this.map.off("zoomend",this._zoomEnd,this)):(this.map.off("viewreset",this._zoomCalc,this),this.map.off("viewreset",this._zoomChange,this))},addTo:function(t){return t.addLayer(this),this}}),L.D3SvgOverlay.version="2.0",L.d3SvgOverlay=function(t,i){return new L.D3SvgOverlay(t,i)};