mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 09:08:37 +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++) {
|
for (var i = 0; i < locations.length; i++) {
|
||||||
var loc = locations[i];
|
var loc = locations[i];
|
||||||
var x1 = loc[1],
|
var x1 = loc[1],
|
||||||
y1 = loc[2],
|
x2 = loc[2],
|
||||||
x2 = loc[3],
|
y1 = loc[3],
|
||||||
y2 = loc[4];
|
y2 = loc[4];
|
||||||
userAreas.push({
|
userAreas.push({
|
||||||
username: loc[0],
|
username: loc[0],
|
||||||
|
|
Loading…
Reference in a new issue