diff options
Diffstat (limited to 'htdocs/index.html')
-rw-r--r-- | htdocs/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/htdocs/index.html b/htdocs/index.html index da094a1..93f501e 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -13,6 +13,8 @@ <script src='https://rawcdn.githack.com/Viglino/Canvas-TextPath/9a757d745071e0eaf2440a1d02117dad38f5b6dd/ctxtextpath.js'></script> <script src='https://rawcdn.githack.com/yakitoritabetai/Leaflet.LabelTextCollision/90fe755cc7ec5d97b71e2e953464fa5369d6e655/dist/L.LabelTextCollision.js'></script> <script src='https://raw.githack.com/triedeti/Leaflet.streetlabels/master/src/Leaflet.streetlabels.js'></script> + <!-- Map Editor --> + <script src='leafletjs/Leaflet.Editable.js'></script> </head> <body style="position: absolute; padding: 0px; margin: 0px; width:100%; height:100%;"> <div id="mapid" style="width: 100%; height: 100%;"></div> @@ -31,7 +33,18 @@ a.new { color: red; } + + .no-aa img[role=presentation] { + image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */ + image-rendering: -moz-crisp-edges; /* Firefox */ + image-rendering: -o-crisp-edges; /* Opera */ + image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */ + image-rendering: pixelated; /* Chrome */ + image-rendering: optimize-contrast; /* CSS3 Proposed */ + -ms-interpolation-mode: nearest-neighbor; /* IE8+ */ + } </style> <script src="mapscript.js"></script> + <script src="streeteditor.js"></script> </body> </html> |