SVG实现地图图谱

先看一下效果,


SVGmap.gif

整个效果都是基于SVG实现的,可以不使用Echat等图表插件的情况下,产生不错的效果,可以实现简单的展示功能。这个是项目中的简化版本,地理位置不对呀,别介意。下面是源码,非常简单,可以看一下。<p>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        .div1{
            width: 530px;
            height: 400px;
            border: 1px solid #96caf6;
            background: url("../img/china.jpeg") ;
            background-size: 530px 400px;
        }
    </style>
</head>
<body>
    <div class="div1">

    </div>
</body>
<script>
    (function (exports) {
        var doc=document;
        var idExpr=/^#([\w-]*)$/;
        var classExpr=/^.([\w-]+)$/;
        var hasClassListinDoc="classList" in document.documentElement;
        var $d={
            $: function (selector, context) {
                var result;
                if(idExpr.test(selector)){
                    result=this.id(selector);
                    if(result) return result;
                }else if(classExpr.test(selector)){
                    result=this.className(selector,context);
                    if(result) return result
                }else{
                    result=context.querySelectorAll(selector);
                    return result
                }
            },
            id: function (selector) {
                return document.getElementById(selector);
            },
            tagName: function (selector, context) {
                var context=doc||context;
                return context.getElementsByTagName(selector)
            },
            className: function (selector, context) {
                var context=doc||context;
                return context.getElementsByClassName(selector);
            },
            node: function (selector, context) {
                return document.createElement(selector);
            },
            addStyle: function (obj,styleName,styleValue) {
                if(Object.prototype.toString.call(styleName)==="[object string]"){
                    obj.style[styleName]=styleValue;
                }else if(Object.prototype.toString.call(styleName)==="[object object]"){
                    for(var key in styleName){
                        obj.style[key]=styleName[key];
                    }
                }
            },
            getStyle: function (obj,styleName) {
                if(window.getComputedStyle){
                    return getComputedStyle(obj,null)[styleName]
                }else if(obj.currentStyle){
                    return obj.currentStyle[styleName];
                }
            },
            removeChild: function (selector, context) {
                context.removeChild(selector);
            },
            addAttr: function (obj, attrs) {
                for(var key in attrs){
                    obj.setAttribute(key,attrs[key]);
                }
            },
            removeAttr:function(obj,attrs){
                for(var i=0;i<attrs.length;i++){
                    obj.removeAttribute[attrs[i]];
                }
            },
            getAttribute: function (obj, attrs) {
                var attrArray=[];
                for(var i=0;i<attrs.length;i++){
                    attrArray.push(obj.getAttribute(attrs[i]))
                }
                return attrArray;
            },
            eventHandle: function (obj,type,handle) {
                if(obj.addEventListener){
                    obj.addEventListener(type,handle,false);
                }else if(obj.attachEvent){
                    obj.attachEvent('on'+eventType,handle)
                }
            },
            each: function (target, handle,arg) {
                for(var i=0;i<target.length;i++){
                    handle.apply(target[i],arg);
                }
            },
            tweenAnimateR: function (obj, type1,type2,start, end, dur) {
                clearInterval(obj.timer);
                var changeValue=end-start;
                var t=0;
                var newValue;
                obj.timer=setInterval(function () {
                    t+=5;
                    newValue=Tween[type1][type2](t,start,changeValue,dur);
                    console.log(newValue);
                    if(Math.round(t)<dur){
                        $d.addAttr(obj,{
                            'r':newValue
                        })
                    }else if(Math.round(t)==dur){
                        clearInterval(obj.timer);
                    }
                },30)
            }
        };
        var Tween = {
            Linear: function (t, b, c, d) { return c * t / d + b; },
            Quad: {//Quadratic二次方效果
                easeIn: function (t, b, c, d) {
                    return c * (t /= d) * t + b;
                },
                easeOut: function (t, b, c, d) {
                    return -c * (t /= d) * (t - 2) + b;
                },
                easeInOut: function (t, b, c, d) {
                    if ((t /= d / 2) < 1) return c / 2 * t * t + b;
                    return -c / 2 * ((--t) * (t - 2) - 1) + b;
                }
            },
            Cubic: {//Cubic 立方效果
                easeIn: function (t, b, c, d) {
                    return c * (t /= d) * t * t + b;
                },
                easeOut: function (t, b, c, d) {
                    return c * ((t = t / d - 1) * t * t + 1) + b;
                },
                easeInOut: function (t, b, c, d) {
                    if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
                    return c / 2 * ((t -= 2) * t * t + 2) + b;
                }
            },
            Quart: {// Quartic  四次方效果
                easeIn: function (t, b, c, d) {
                    return c * (t /= d) * t * t * t + b;
                },
                easeOut: function (t, b, c, d) {
                    return -c * ((t = t / d - 1) * t * t * t - 1) + b;
                },
                easeInOut: function (t, b, c, d) {
                    if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
                    return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
                }
            },
            Quint: {// Quintic五次方效果
                easeIn: function (t, b, c, d) {
                    return c * (t /= d) * t * t * t * t + b;
                },
                easeOut: function (t, b, c, d) {
                    return c * ((t = t / d - 1) * t * t * t * t + 1) + b;
                },
                easeInOut: function (t, b, c, d) {
                    if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
                    return c / 2 * ((t -= 2) * t * t * t * t + 2) + b;
                }
            },
            Sine: {//Sinusoidal 正弦效果
                easeIn: function (t, b, c, d) {
                    return -c * Math.cos(t / d * (Math.PI / 2)) + c + b;
                },
                easeOut: function (t, b, c, d) {
                    return c * Math.sin(t / d * (Math.PI / 2)) + b;
                },
                easeInOut: function (t, b, c, d) {
                    return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b;
                }
            },
            Expo: { // Exponential指数
                easeIn: function (t, b, c, d) {
                    return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b;
                },
                easeOut: function (t, b, c, d) {
                    return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b;
                },
                easeInOut: function (t, b, c, d) {
                    if (t == 0) return b;
                    if (t == d) return b + c;
                    if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
                    return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b;
                }
            },
            Circ: { //circle循环
                easeIn: function (t, b, c, d) {
                    return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b;
                },
                easeOut: function (t, b, c, d) {
                    return c * Math.sqrt(1 - (t = t / d - 1) * t) + b;
                },
                easeInOut: function (t, b, c, d) {
                    if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
                    return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b;
                }
            },
            Elastic: {//  Elastic 弹性
                easeIn: function (t, b, c, d, a, p) {
                    if (t == 0) return b; if ((t /= d) == 1) return b + c; if (!p) p = d * .3;
                    if (!a || a < Math.abs(c)) { a = c; var s = p / 4; }
                    else var s = p / (2 * Math.PI) * Math.asin(c / a);
                    return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
                },
                easeOut: function (t, b, c, d, a, p) {
                    if (t == 0) return b; if ((t /= d) == 1) return b + c; if (!p) p = d * .3;
                    if (!a || a < Math.abs(c)) { a = c; var s = p / 4; }
                    else var s = p / (2 * Math.PI) * Math.asin(c / a);
                    return (a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b);
                },
                easeInOut: function (t, b, c, d, a, p) {
                    if (t == 0) return b; if ((t /= d / 2) == 2) return b + c; if (!p) p = d * (.3 * 1.5);
                    if (!a || a < Math.abs(c)) { a = c; var s = p / 4; }
                    else var s = p / (2 * Math.PI) * Math.asin(c / a);
                    if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
                    return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
                }
            },
            Back: {//后退
                easeIn: function (t, b, c, d, s) {
                    if (s == undefined) s = 1.70158;
                    return c * (t /= d) * t * ((s + 1) * t - s) + b;
                },
                easeOut: function (t, b, c, d, s) {
                    if (s == undefined) s = 1.70158;
                    return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
                },
                easeInOut: function (t, b, c, d, s) {
                    if (s == undefined) s = 1.70158;
                    if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
                    return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
                }
            },
            Bounce: {// Bounce反弹
                easeIn: function (t, b, c, d) {
                    return c - Tween.Bounce.easeOut(d - t, 0, c, d) + b;
                },
                easeOut: function (t, b, c, d) {
                    if ((t /= d) < (1 / 2.75)) {
                        return c * (7.5625 * t * t) + b;
                    } else if (t < (2 / 2.75)) {
                        return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
                    } else if (t < (2.5 / 2.75)) {
                        return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
                    } else {
                        return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
                    }
                },
                easeInOut: function (t, b, c, d) {
                    if (t < d / 2) return Tween.Bounce.easeIn(t * 2, 0, c, d) * .5 + b;
                    else return Tween.Bounce.easeOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
                }
            }
        };
        exports.$d=$d;
        exports.Tween=Tween;
    })(window);
    var SVG= function () {

    };
    SVG.prototype={
        svgNS:'http://www.w3.org/2000/svg',
        createTag: function (tag,tagAttrs) {
            var node=document.createElementNS(this.svgNS,tag);
            for(var key in tagAttrs){
                node.setAttribute(key,tagAttrs[key]);
            }
            return node;
        },
        setAttribute: function (obj,attrs) {
            for(var key in attrs){
                obj.setAttribute(key,attrs[key]);
            }
        },
        setPosition: function (obj, attrs) {
            for(var key in attrs){
                obj.setAttribute(key,attrs[key]);
            }
            return obj;
        },
        createCircle: function (args,targetObject) {
            for(var i=0;i<args.length;i++){
                var node=this.createTag("circle",args[i]);
                targetObject.appendChild(node);
            }
        },
        createText: function (args,targetObject) {
            for(var i=0;i<args.length;i++){
                var text=this.createTag('text',args[i]);
                var message=$d.getAttribute(text,["tittle"]);
                text.innerHTML=message;
                console.log(message);
                targetObject.appendChild(text);
            }
        },
        createRect: function (args,targetObject) {
            for(var i=0;i<args.length;i++){
                var rect=this.createTag('rect',args[i]);
                targetObject.appendChild(rect);
            }
        }
    };
    var svg=new SVG();
    var div1=$d.className("div1")[0];
    var svgObject=svg.createTag("svg",{
        'xmls':this.svgNS,
        'width':'100%',
        'height':'100%',
        'zIndex':'100'
    });
    div1.appendChild(svgObject);
    svg.createCircle([{
        'cx':'150px',
        'cy':'120px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class1'
    },{
        'cx':'50px',
        'cy':'20px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class2'
    },{
        'cx':'70px',
        'cy':'60px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class3'
    },{
        'cx':'110px',
        'cy':'40px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class4'
    },{
        'cx':'210px',
        'cy':'240px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class5'
    },{
        'cx':'280px',
        'cy':'340px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class6'
    },{
        'cx':'480px',
        'cy':'240px',
        'r':'10',
        'fill':'rgb(159,218,191)',
        'stroke-width':'1',
        'tittle':'class7'
    }],svgObject);

    svg.createText([{
        'x':'190px',
        'y':'125px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'beijing',
        'class':'class1'
    },{
        'x':'90px',
        'y':'25px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'shanghai',
        'class':'class2'
    },{
        'x':'110px',
        'y':'65px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'kunming',
        'class':'class3'
    },{
        'x':'150px',
        'y':'45px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'shenzhen',
        'class':'class4'
    },{
        'x':'260px',
        'y':'245px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'chengdu',
        'class':'class5'
    },{
        'x':'330px',
        'y':'345px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'wuhan',
        'class':'class6'
    },{
        'x':'530px',
        'y':'245px',
        'fill':'white',
        'font-size':14,
        'text-anchor':'middle',
        'tittle':'wuhan',
        'class':'class7'
    }],svgObject);
    var circles=$d.tagName("circle",svgObject);
    $d.each(circles, function () {
        console.log(this);
        $d.eventHandle(this, 'mouseenter',function () {
            var that=this;
            $d.tweenAnimateR(that,'Elastic','easeOut',10,15,150);
            var text=$d.className($d.getAttribute(that,['tittle'])[0])[0];
            $d.addAttr(text,{
                'fill':'red'
            })
        });
        $d.eventHandle(this,'mouseleave', function () {
            var that=this;
            $d.tweenAnimateR(this,'Elastic','easeOut',15,10,150);
            var text=$d.className($d.getAttribute(that,['tittle'])[0])[0];
            $d.addAttr(text,{
                'fill':'white'
            })
        })
    })
</script>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,397评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 到了需要成熟的年纪,经历了一些人与事,开始试着总结自己一直以来希望成为一个怎样的女人。当然每个人的个性与标准不同,...
    Viewyn阅读 361评论 0 0
  • 问在前面 1.你家宝宝出生多重? 2.你家宝宝每天能吃多少奶? 3.你觉得宝宝体重是多少才是正常的? 4.如果体重...
    当爹以后阅读 324评论 0 0
  • 日常篇 惠子 9月4日 001/ 今天是开学的第一天 中午,灯一亮 马上惊醒了(做着梦)脑袋瓜子好重 一拉开帘子 ...
    九姑娘HZ阅读 241评论 0 0