Posts by Wellington Gustavo Macedo • 16 points
3 posts
-
0
votes1
answer75
viewsA: Update values in a matrix keeping elements already modified earlier
What could be done is to store the values in a string, I advise using Stringbuilder because it is the indicated for concatenation of values in a repetition loop, something like the one below:…
-
0
votes1
answer456
viewsA: Javascript Constructor x is not a constructor error
Only the Return was missing: var mapa = null; var Map = (function (ol, $) { function Map(paramsMap) { this.layers = {}; this.overlayes = {}; this.olMap = new ol.Map(paramsMap); }…
-
0
votes1
answer56
viewsA: Angular Directives - ng-repeat
I believe your problem is here: $scope.areacomum = data; The fact is that to recover the data from the request response it is necessary to access the property date, parameter that is injected into…