Manish

Results 16 issues of Manish

In my maven application, I have implemented ForwardedRequestInterceptor.intercept() as: `requestData.setUri("error/403");` 403.html is location at: > \src\main\resources\templates\error\403.html Instead of 403.html, I get following: > {"statusCode":404,"error":"Not Found","message":"Not Found"} How to ensure that...

I am rendering a point cloud from LAS file. During debugging of render.js's ParticleSystemBatcher.prototype.push method, I found that points added to particle system have coordinate values always positive. And Z...

I want to change colors of some points dynamically. I do following for point at location j: `geometry.attributes.color.array[3*j] = r;` `geometry.attributes.color.array[3*j+1] = g;` `geometry.attributes.color.array[3*j+2] = b;` `geometry.attributes.color.needsUpdate = true;` But...

Hi, I want to customize this repo to tinker with point cloud rendered from a LAS/LAZ file. Which code files should I start to look into in particular? Manish @verma...

Code change done in js/render.js for code optimization.

Hi, In render.js: Inside for loop in ParticleSystemBatcher.prototype.push `var x = p.position[0] * lasBuffer.scale[0] + lasBuffer.offset[0];` Later on: `positions[ 3*i ] = p.position[0] * lasBuffer.scale[0] + (lasBuffer.offset[0] - this.corrective.x);` This...

Hi, I am making use of VTS browser to render around 9k 3D points by reading GeoJSON data from a rest service. Every point is a Point feature. And I...

Hi, In SimpleSample.java, configurer method returns MeterRegistryConfigurer . But MeterRegistryConfigurer is not a public class, hence it doesn't compile. What is workaround for it? @jkschneider With regards Manish

In StatsdTelegrafSample.java, > new SpringApplicationBuilder(AtlasSample.class).profiles("statsd-telegraf").run(args); Should it be StatsdTelegrafSample.class instead of AtlasSample.class? If yes, I can create a PR. Please let me know. Edit: StatsdDatadogSample.java may have similar issue. @jkschneider

Hi, I am trying to implement linkedin login functionality. So I do following in my fragment class: LinkedInSocialNetwork liNetwork = new LinkedInSocialNetwork(this, LINKEDIN_CLIENT_KEY, LINKEDIN_CLIENT_SECRET, LINKEDIN_CALLBACK_URL, linkedInScope); But my fragment class...