Merge branch '6-client-no-protection-against-false-color' into 'master'

avoid false color

Closes #6

See merge request sgay/traque!7
This commit is contained in:
Lubin Bailly 2022-09-13 11:24:55 +02:00
commit 8ac3b1e3f7

View file

@ -24,7 +24,7 @@
<div id="map"></div><br/> <div id="map"></div><br/>
<input id="name"/><button id="setName">Set team name</button><br/> <input id="name"/><button id="setName">Set team name</button><br/>
<input type="number" id="color" value="0"/><button id="setColor">Set color</button><br/> <input type="number" id="color" min="-1" value="0"/><button id="setColor">Set color</button><br/>
<script type="text/javascript"> <script type="text/javascript">
@ -79,6 +79,8 @@
maxZoom: 19, maxZoom: 19,
attribution: '© OpenStreetMap' attribution: '© OpenStreetMap'
}).addTo(map); }).addTo(map);
document.getElementById('color').max = icons.length - 1;
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
// UPDATE MAP // UPDATE MAP