mirror of
https://github.com/lubosz/overte.git
synced 2025-04-10 17:22:40 +02:00
Fix order of components in streetAreaExample.js
This commit is contained in:
parent
310f184978
commit
02676848c6
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ if (req.status == 200) {
|
|||
for (var i = 0; i < locations.length; i++) {
|
||||
var loc = locations[i];
|
||||
var x1 = loc[1],
|
||||
y1 = loc[2],
|
||||
x2 = loc[3],
|
||||
x2 = loc[2],
|
||||
y1 = loc[3],
|
||||
y2 = loc[4];
|
||||
userAreas.push({
|
||||
username: loc[0],
|
||||
|
|
Loading…
Reference in a new issue