监督员车辆轨迹简化

简化轨迹显示,去除无效信息。扣咪日眼的。

// ==UserScript==
// @name         监督员车辆轨迹简化
// @namespace    http://tampermonkey.net/
// @version      1.0.3
// @description  简化轨迹显示,去除无效信息。扣咪日眼的。
// @author       You
// @match        http://tampermonkey.net/index.php?version=4.4&ext=dhdg&updated=true
// @grant        none
// @include      http://223.223.180.206:6399/*
// ==/UserScript==

(function() {
    'use strict';

    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }

    var cssText = '';
    cssText += '.amap-icon img {display:none!important;}';
    cssText += '.amap-layer {opacity:0!important;}';
    cssText += '#alarmWindow {display:none!important;}';

    var someReg = new RegExp('t_6','g');
    var cssText2 = cssText.replace(someReg,'t_19');

    addGlobalStyle(cssText);

})();