您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bootstrap library for custom Waze Map Editor scripts
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.gf.qytechs.cn/scripts/450160/1086971/WME%20Bootstrap.js
Bootstrap library for custom WME scripts
// @require https://gf.qytechs.cn/scripts/450160-wme-bootstrap/code/WME-Bootstrap.js
bootstrap.wme
– on document
, when all ready for usagenone.wme
– on document
, when nothing chosennode.wme
– on document
, when chosen node for editnodes.wme
– on document
, when chosen more than one node (I'm not sure how it possible)segment.wme
– on document
, when chosen segment for editsegments.wme
– on document
, when chosen more than one segmentvenue.wme
– on document
, when chosen place or point for editvenues.wme
– on document
, when chosen more than one place or pointpoint.wme
– on document
, when chosen point place for editplace.wme
– on document
, when chosen place for editresidential.wme
– on document
, when chosen residential place for edit(function () {
'use strict'
$(document)
.on('bootstrap.wme', function () {
console.info('@ready')
})
.on('none.wme', (e, el) => {
console.info('@none', el)
})
.on('node.wme', (e, el) => {
console.info('@node', el)
})
.on('nodes.wme', (e, el) => {
console.info('@nodes', el)
})
.on('segment.wme', (e, el) => {
console.info('@segment', el)
})
.on('segments.wme', (e, el) => {
console.info('@segments', el)
})
.on('venue.wme', (e, el) => {
console.info('@venue', el)
})
.on('venues.wme', (e, el) => {
console.info('@venues', el)
})
.on('point.wme', (e, el) => {
console.info('@point', el)
})
.on('place.wme', (e, el) => {
console.info('@place', el)
})
.on('residential.wme', (e, el) => {
console.info('@residential', el)
})
})();
Author homepage: http://anton.shevchuk.name/
Script homepage: https://github.com/AntonShevchuk/wme-bootstrap
GreasyFork: https://gf.qytechs.cn/scripts/450160-wme-bootstrap/code/WME-Bootstrap.js
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址