Open WME in GMM

Opens the current Waze Map Editor view in Google Map Maker

当前为 2015-10-10 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name 			Open WME in GMM
// @description 	Opens the current Waze Map Editor view in Google Map Maker
// @namespace 		vaindil
// @version 		0.5.1
// @grant           none
// @include         https://www.waze.com/editor/*
// @include         https://www.waze.com/*/editor/*
// @include         https://editor-beta.waze.com/*
// @author			vaindil
// ==/UserScript==

console.log("WMEGMM BEGINNING");

startcode = function() {
    try {
        var element = $('div .view-area.olMap #WazeMap');
        if (typeof element !== "undefined" && element.value !== '') {
            console.log("WMEGMM START");
            $('#user-details').append('<hr /><a id="WMEtoGMM" href="'+gen_url()+'" target="_blank" style="font-weight:bold;">Open in GMM</a><hr />');
        } else {
            console.log("WMEGMM TIMEOUT");
            setTimeout(startcode, 1000);
        }
    } catch (err) {
        console.log("WME to GMM error: "+err);
        setTimeout(startcode, 1000);
    }
};

function gen_url() {
    var projI=new OpenLayers.Projection("EPSG:900913");
    var projE=new OpenLayers.Projection("EPSG:4326");
    var center_lonlat=(new OpenLayers.LonLat(wazeMap.center.lon,wazeMap.center.lat)).transform(projI, projE);
    var topleft=(new OpenLayers.LonLat(wazeMap.getExtent().left,wazeMap.getExtent().top)).transform(projI, projE);
    var bottomright=(new OpenLayers.LonLat(wazeMap.getExtent().right,wazeMap.getExtent().bottom)).transform(projI, projE);
    lat=Math.round(center_lonlat.lat * 1000000)/1000000;
    lon=Math.round(center_lonlat.lon * 1000000)/1000000;
    spn=Math.abs(topleft.lat-bottomright.lat)+','+Math.abs(topleft.lon-bottomright.lon);
    return 'https://www.google.com/mapmaker?ll='+lat+','+lon+'&spn='+spn+'&lyt=large_map_v3';
}

$('#editor-container').mouseup(function() {
    $('#WMEtoGMM').attr('href', gen_url());
});

startcode();