WME-EntryPoint

Library for Waze Map Editor Greasy Fork镜像 scripts

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/480123/1281900/WME-EntryPoint.js

  1. // ==UserScript==
  2. // @name WME EntryPoint
  3. // @version 0.0.1
  4. // @description Library for Waze Map Editor Greasy Fork镜像 scripts
  5. // @license MIT License
  6. // @author Anton Shevchuk
  7. // @namespace https://gf.qytechs.cn/users/227648-anton-shevchuk
  8. // @supportURL https://github.com/AntonShevchuk/wme-entrypoint/issues
  9. // @match https://*.waze.com/editor*
  10. // @match https://*.waze.com/*/editor*
  11. // @exclude https://*.waze.com/user/editor*
  12. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://anton.shevchuk.name&size=64
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. /* jshint esversion: 8 */
  17.  
  18. class entryPoint {
  19. constructor () {
  20. let {
  21. point = { type: 'Point', coordinates: [0, 0] },
  22. entry = true,
  23. exit = false,
  24. primary = false,
  25. name = ''
  26. } = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}
  27.  
  28. this._point = point
  29. this._entry = entry
  30. this._exit = exit
  31. this._isPrimary = primary
  32. this._name = name
  33. }
  34.  
  35. with () {
  36. let e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}
  37. return new entryPoint(Object.assign(this.toJSON(), e))
  38. }
  39.  
  40. getPoint () {
  41. return this._point
  42. }
  43.  
  44. getEntry () {
  45. return this._entry
  46. }
  47.  
  48. getExit () {
  49. return this._exit
  50. }
  51.  
  52. getName () {
  53. return this._name
  54. }
  55.  
  56. isPrimary () {
  57. return this._isPrimary
  58. }
  59.  
  60. toJSON () {
  61. return {
  62. entry: this._entry,
  63. exit: this._exit,
  64. name: this._name,
  65. point: this._point,
  66. primary: this._isPrimary
  67. }
  68. }
  69.  
  70. clone () {
  71. return this.with()
  72. }
  73.  
  74. equals (e) {
  75. return this._point.type === e._point.type
  76. && this._point.coordinates[0] === e._point.coordinates[0]
  77. && this._point.coordinates[1] === e._point.coordinates[1]
  78. && this._name === e._name
  79. && this._isPrimary === e._isPrimary
  80. && this._entry === e._entry
  81. && this._exit === e._exit
  82. }
  83. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址