mapa parcelas.js

This commit is contained in:
abe- 2017-06-17 15:55:51 +02:00
parent 33dd302376
commit 54c232c3a0

View file

@ -75,14 +75,18 @@ function draw() {
// Titulo // Titulo
fill(255,200); fill(255,200);
stroke(155); stroke(155);
rect(605, 375, 170, 120); rect(605, 365, 170, 130);
fill(0); fill(0);
textStyle(BOLD); textStyle(BOLD);
textSize(12); textSize(12);
text("TAMAÑO MEDIO DE EXPLOTACIÓN ENTREGADA A COLONO", 620, 390, 150, 80); text("TAMAÑO MEDIO DE EXPLOTACIÓN ENTREGADA A COLONO", 620, 380, 150, 80);
textStyle(NORMAL); textStyle(NORMAL);
textSize(11); textSize(11);
text("Interacción con el ratón: Datos reales (verde) frente a datos según Plan de Colonización (blanco)", 620, 440, 150, 80); noStroke();
fill(155,0,0);
text("Interacción con el ratón:",620, 430, 150, 20);
fill(0);
text("Datos reales (verde) frente a datos según Plan de Colonización (blanco)", 620, 445, 150, 80);
} }